Top 10 Revit Architecture 2014 books
Revit Architecture, along with ArchiCAD, is most used BIM software in architectural design. Although book is not the best medium for learning computer software, there are some useful handbooks if you often use this software. Refers to the latest version of Revit Architecture, 2014.
- Autodesk Revit Architecture 2014 Essentials, Sybex
- Introduction to Revit Architecture, with concise explanations, real-world examples and plenty of hands-on exercises and tutorials.
- Introduction to Revit Architecture, with concise explanations, real-world examples and plenty of hands-on exercises and tutorials.
- Mastering Autodesk Revit Architecture 2014, Sybex
- Revised and updated edition that features in-depth explanations, real-world examples, practical tutorials, hands-on exercises with downloadable before-and-after files.
- Revised and updated edition that features in-depth explanations, real-world examples, practical tutorials, hands-on exercises with downloadable before-and-after files.
- Autodesk Revit 2014 BIM Management, Sybex
- Template and Family Creation, designed for students already familiar with Revit Architecture.
- Template and Family Creation, designed for students already familiar with Revit Architecture.
- Renaissance Revit: Creating Classical Architecture with Modern Software, CreateSpace Independent Publishing Platform
- Brings together architecture, history and Revit, learn how to create complex forms drawn from classical architecture.
- Brings together architecture, history and Revit, learn how to create complex forms drawn from classical architecture.
- Revit Architecture 2014 for Designers, Fairchild Books
- The book is written specifically for architects and interior designers as they transition from CAD to BIM.
- The book is written specifically for architects and interior designers as they transition from CAD to BIM.
- Interior Design Using Autodesk Revit 2014, SDC Publications
- Introduction to BIM for Interior Designers, learn Revit while developing the interior of a 2-story law office, while emphasis is placed on interior design rather than primary architectural elements. Contains accompanying CD.
- Introduction to BIM for Interior Designers, learn Revit while developing the interior of a 2-story law office, while emphasis is placed on interior design rather than primary architectural elements. Contains accompanying CD.
- Autodesk Revit Architecture 2014 for Architects and Designers, CADCIM Technologies
- Learn major concepts and tools of Revit Architecture 2014 – building components, conceptual massing, smart workflows, rich construction documentation, and more.
- Learn major concepts and tools of Revit Architecture 2014 – building components, conceptual massing, smart workflows, rich construction documentation, and more.
- Autodesk Revit Architecture 2014: No Experience Required, Sybex
- Covers each phase of designing, documenting, and presenting a real-world project – a four-story office building.
- Covers each phase of designing, documenting, and presenting a real-world project – a four-story office building.
- Residential Design Using Autodesk Revit 2014, Architectural Commercial Design Using Autodesk Revit 2014, SDC Publications
- Enables architectural students new to Autodesk Revit 2014 to learn Revit’s Architectural tools while developing a single family residence, or a three story office building. Contains accompanying CD.
- Enables architectural students new to Autodesk Revit 2014 to learn Revit’s Architectural tools while developing a single family residence, or a three story office building. Contains accompanying CD.
- Autodesk Revit Architecture 2014 Fundamentals, SDC Publications
- Enables students to create full 3D architectural project models, focuses on basic tools.
- Enables students to create full 3D architectural project models, focuses on basic tools.
Top 10 Revit Architecture 2014 books的更多相关文章
- Top 10 Universities for Artificial Intelligence
1. Massachusetts Institute of Technology, Cambridge, MA Massachusetts Institute of Technology is a p ...
- TOP 10开源的推荐系统简介
最近这两年推荐系统特别火,本文搜集整理了一些比较好的开源推荐系统,即有轻量级的适用于做研究的SVDFeature.LibMF.LibFM等,也有重量级的适用于工业系统的 Mahout.Oryx.Eas ...
- TOP 10 BEST LINUX GAMES RELEASED IN 2016
Gaming on Linux used to be a very rare phrase. But since the arrival of Steam on Linux, the Linux ga ...
- Top 10 Algorithms for Coding Interview--reference
By X Wang Update History:Web Version latest update: 4/6/2014PDF Version latest update: 1/16/2014 The ...
- Top 10 Mistakes Java Developers Make--reference
This list summarizes the top 10 mistakes that Java developers frequently make. #1. Convert Array to ...
- OWASP TOP 10 2017中文译文
说明:owasp top 10其实有中文官方版本:本文是按着英文版进行翻译而成. 官方中文版:http://www.owasp.org.cn/owasp-project/OWASPTop102017v ...
- Top 10 Algorithms of 20th and 21st Century
Top 10 Algorithms of 20th and 21st Century MATH 595 (Section TTA) Fall 2014 TR 2:00 pm - 3:20 pm, Ro ...
- SQL Server: Top 10 Secrets of a SQL Server Expert
转载自:http://technet.microsoft.com/en-us/magazine/gg299551.aspx Many companies have downsized their IT ...
- Web漏洞总结: OWASP Top 10
本文原创,更多内容可以参考: Java 全栈知识体系.如需转载请说明原处. 开发安全 - OWASP Top 10 在学习安全需要总体了解安全趋势和常见的Web漏洞,首推了解OWASP,因为它代表着业 ...
随机推荐
- Excel VBA 从外部工作簿取数的5种方法
'======================================================= '1.循环单元格取数,效率最低,不可取,初学者易犯 '2.区域相等取数 '3.复制粘贴 ...
- Ubuntu下安装BeautifulSoup4
先去下载beautifulsoup的安装包https://www.crummy.com/software/BeautifulSoup/bs4/download/4.0/ 下载完之后解压 tar -xv ...
- SQL记录-PLSQL-DBMS输出
PL/SQL DBMS输出 DBMS_OUTPUT是一个内置的软件包,能够显示输出显示调试信息,并从PL/ SQL块,子程序,包和触发器发送消息.我们已经使用这个包在我们所有的教程中. 让我们来看 ...
- BZOJ2428 均分数据
2428: [HAOI2006]均分数据 Time Limit: 5 Sec Memory Limit: 128 MB Description 已知N个正整数:A1.A2.…….An .今要将它们分 ...
- 【ORACLE】创建表空间
CREATE TABLESPACE dna36 DATAFILE 'D:\oracle\oradata\orcl\dna36.dbf' SIZE 100M AUTOEXTEND ON NEXT 10M ...
- 解决MySQL新增用户无法登陆问题
1. 新增用户 grant all on *.* to '库名'@'%' identified by '库名'; 2. 刷新授权表 flush privileges; 3. 删除空用户 use mys ...
- struts2 中 Preparable 接口实现数据准备
今天才知道struts还有Preparable接口,实现此接口需要实现其prepare()方法,调用action中其他方法之前会先调用prepare()方法.此接口和方法可以用于初始化一些数据. 测试 ...
- Java反射--基于ParameterizedType实现泛型类,参数化类型
一.引子: 项目中使用Gson的反序列化将json转化成具体的对象,具体方法是: package com.google.gson;下的反序列化方法 public <T> T fromJso ...
- 错误的理解引起的bug async await 执行顺序
今天有幸好碰到一个bug,让我知道了之前我对await async 的理解有点偏差. 错误的理解 之前我一直以为 await 后面的表达式,如果是直接返回一个具体的值就不会等待,而是继续执行asyn ...
- Jenkins与代码上线解决方案
Jenkins是一个用Java编写的开源的持续集成工具.在与Oracle发生争执后,项目从Hudson项目独立. Jenkins提供了软件开发的持续集成服务.它运行在Servlet容器中(例如Apac ...