Google SketchUp Cookbook: (Chapter 3) Intersection Edges: Cutting and Trimming
软件环境
SketchUp Pro 2018
参考书籍
Google SketchUp Cookbook
Trimming an Object
使用 Intersect with Model 裁剪物体。
Cutting All Intersected Objects
一次性裁剪多个物体。
Using Groups or Components to Create Cutting Objects
下图中,有两种样式的裁剪:
a) 实体模型
b) 壳状模型

实体模型:裁剪后,保留了裁剪物体的部分表面,与被裁剪物体结合在一起
壳状模型:裁剪后,将裁剪物体完全删除掉了
Intersecting with Groups and Components, Without Exploding

上图是 Building with Glass Windows,Building 处于 Exploded 状态(既不是 Group,也不是 Component),Glass Window 是组件(Component)
在 Building 上生成 Intersection edges:选中 Building 所有几何元素 -> 右键菜单 -> Intersect Faces -> with Model
在 Glass Window 上生成 Intersection edges:选中并编辑 Glass Window 组件 -> 选中 Glass Window 所有几何元素 -> 右键菜单 -> Intersect Faces -> with Model
Intersecting with Both Intact and Exploded Components
这个例子是说,有一个双层抽屉,抽屉上有4个把手,把手创建为组件,先用把手作为裁剪物体去裁剪抽屉正面,在抽屉正面钻出用于安装把手的小洞。
同时把手组件上保留有 Intersection edges,最后将把手组件放回抽屉正面。

Intersecting Only Selected Objects
这个容易理解,仅在选中的物体上生成 intersection edges。
这里有一个快速选择几何元素的技巧,根据材质选择:
a) 先选择一个面
b) 右键菜单 -> Select -> All with same Material
Intersecting Within a Group or Component
Intersect Faces -> with Context
当你需要在一个组或组件内部产生 intersection edges ,并且不受模型其余部分的影响时,请使用 Intersect Faces with Context
Using Intersect to Trim Components with Themselves
组件与组件之间相交,用圆木堆砌小围栏,见下图效果。

Google SketchUp Cookbook: (Chapter 3) Intersection Edges: Cutting and Trimming的更多相关文章
- Google SketchUp Cookbook: (Chapter 5) Roofs: Constraints and Inferences
软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook Creating an Overhanging Roof 屋顶上有一个缝隙需要填充,有两种方法 ...
- Google SketchUp Cookbook: (Chapter 4) Advanced Intersect and Follow Me Techniques
软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook Intersect 工具经常与 Follow Me 工具一起使用,以创建复杂的 3D 物体. ...
- Google SketchUp Cookbook: (Chapter 2) Following Paths with Follow Me
软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook Follow Me工具 Follow Me工具,将2D图形沿着一条路径挤出生成3D物体. 使用 ...
- Google SketchUp Cookbook: (Chapter 1) Making Multiple Copies
软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook http://shop.oreilly.com/product/9780596155100.d ...
- How to export a model from SolidWorks to Google SketchUp
How to export a model from SolidWorks to Google SketchUp While Google SketchUp is not a professional ...
- [转载] google mock cookbook
原文: https://code.google.com/p/googlemock/wiki/CookBook Creating Mock Classes Mocking Private or Prot ...
- (转) [it-ebooks]电子书列表
[it-ebooks]电子书列表 [2014]: Learning Objective-C by Developing iPhone Games || Leverage Xcode and Obj ...
- Sketchup+ArcGIS三维建模与管理
一.软件安装及其说明 1.需要安装的软件及其安装: 这份报告主要涉及到的有三个需要安装的软件ArcGIS9.3(或9.2) .Sketchup6.0和SketchUp6 ESRI 插件. ArcGIS ...
- 谷歌 google
google Google是搜索引擎名,也是一家美国上市公司名称.Google公司于1998年9月7日以私有股份公司的形式创立,以设计并管理一个互联网的搜索引擎.Google公司的总部称作“Googl ...
随机推荐
- java2周来的一些心得和体会
1.首先,在开发的一开始,可以将绝大多数rest可能提交过来字段先抽离出来,做成一个基础类. 然后再继承这个类,这样做的好处是业务就被分开了,谁也不会影响到谁. 2.在maven当中,需要修改自己的类 ...
- 前端开发:一个开源、简单易用的jQuery表格插件(DataTables)
DataTables是一个基于jQuery库的开源(MIT协议)表格插件,支持添加.排序.分页.搜索.过滤等功能,使用简单.广受欢迎,能够与主流前端UI整合(如bootstrap.jQuery UI等 ...
- js中Array数组的属性和方法
这是我自己整理出来的一些关于Array数组的属性和方法,即查即用. 1.Array.length属性:数组的项数组,始终返回0或者更大的值. 2.instanceof操作符:value instanc ...
- SQLI DUMB SERIES-20
(1)登录成功后页面: (2)登录成功后,用burp开始抓包,刷新浏览器页面,将会跳出如下页面 (3)根据各种提示,知道需要从cookies入手,寻找闭合方式 闭合方式为单引号.注释符也可以用 (4) ...
- Qt实现 动态化遍历二叉树(前中后层次遍历)
binarytree.h 头文件 #ifndef LINKEDBINARYTREE_H #define LINKEDBINARYTREE_H #include<c++/algorithm> ...
- 爬虫基础之urllib库
urllib库的基本使用 urlopen() # 导入urllib库 import urllib # 往指定url发送请求,返回一个响应对象 response = urllib.request.url ...
- Python变量和常量
1.什么是变量 变量:核心在于变和量儿字,变->变化,量->状态如何定义? x=1 变量名 变量赋值符号:= 变量值:1 其中变量名又称为标识符: 1. 可以是字母,数字,下划线的任意组合 ...
- bootstrap简单使用实例
表格实例,包含bootstrap.css 和 2.1.1jquery <!DOCTYPE html> <html> <head> <meta charset= ...
- 实体lis<T>t转换datatable
public static DataTable ListToTable<T>(List<T> list) { Type type = typeof(T) ...
- Python图片裁剪
我们使用的是Image中的crop(box)功能,它需要一个参数box,元组 类型,元组包括4个元素,如:(距离图片左边界距离x, 距离图片上边界距离y,距离图片左边界距离+裁剪框宽度x+w,距离图片 ...