软件环境

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的更多相关文章

  1. Google SketchUp Cookbook: (Chapter 5) Roofs: Constraints and Inferences

    软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook Creating an Overhanging Roof 屋顶上有一个缝隙需要填充,有两种方法 ...

  2. Google SketchUp Cookbook: (Chapter 4) Advanced Intersect and Follow Me Techniques

    软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook Intersect 工具经常与 Follow Me 工具一起使用,以创建复杂的 3D 物体. ...

  3. Google SketchUp Cookbook: (Chapter 2) Following Paths with Follow Me

    软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook Follow Me工具 Follow Me工具,将2D图形沿着一条路径挤出生成3D物体. 使用 ...

  4. Google SketchUp Cookbook: (Chapter 1) Making Multiple Copies

    软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook http://shop.oreilly.com/product/9780596155100.d ...

  5. 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 ...

  6. [转载] google mock cookbook

    原文: https://code.google.com/p/googlemock/wiki/CookBook Creating Mock Classes Mocking Private or Prot ...

  7. (转) [it-ebooks]电子书列表

    [it-ebooks]电子书列表   [2014]: Learning Objective-C by Developing iPhone Games || Leverage Xcode and Obj ...

  8. Sketchup+ArcGIS三维建模与管理

    一.软件安装及其说明 1.需要安装的软件及其安装: 这份报告主要涉及到的有三个需要安装的软件ArcGIS9.3(或9.2) .Sketchup6.0和SketchUp6 ESRI 插件. ArcGIS ...

  9. 谷歌 google

    google Google是搜索引擎名,也是一家美国上市公司名称.Google公司于1998年9月7日以私有股份公司的形式创立,以设计并管理一个互联网的搜索引擎.Google公司的总部称作“Googl ...

随机推荐

  1. tomcat下服务启动失败原因

    Tomcat启动成功,输入网址后可以显示小黄猫界面,但是在Tomcat下的服务却启动不成功,显示404(以Jenkins为例,运用多种方式查看原因) 注:1.单启动Tomcat服务是可以启动成功的. ...

  2. 使用docker部署springboot应用

    1.构造Dockerfile打包文件 # from base image centos FROM centos #MAINTAINER lirenqing #Java Version #ENV JAV ...

  3. CSS3扁平化Loading动画特效

    效果预览:http://hovertree.com/texiao/css3/42/ 代码如下: <!doctype html> <html> <head> < ...

  4. Spring Boot程序的执行流程

    Spring Boot的执行流程如下图所示:(图片来源于网络) 上图为SpringBoot启动结构图,我们发现启动流程主要分为三个部分,第一部分进行SpringApplication的初始化模块,配置 ...

  5. 关于java中为什么尽量把受检异常转化为非受检异常

    首先理解一下受检异常与非受检异常: 异常表示程序运行过程中可能出现的非正常状态,运行时异常表示虚拟机操作中可能遇到的异常,是一种常见的运行错误,只要程序设计的没有问题通常就不会发生.受检异常与程序的上 ...

  6. idea上手

    IntelliJ Idea 常用快捷键列表 最常用: Ctrl+P,可以显示参数信息 Alt+Insert,可以生成构造器/Getter/Setter等 Ctrl+Enter,导入包,自动修正 Ctr ...

  7. 采用CAS算法 实现高性能的Disruptor 完成多线程下并发、等待、先后等操作

    来源:https://blog.csdn.net/tianyaleixiaowu/article/details/79787377 拓展: https://www.jianshu.com/p/d24b ...

  8. javascript常见问题总结

    1.const obj = {a:6}; obj.b=8; obj.a=9;//obj为{a:9,b:8};const定义对象的时候是可以改变内容的. const b = "hello&qu ...

  9. EBS WEBADI无法创建文档

    有些小伙伴在使用WEBADI时,下载模板之后会发现模板创建文档一直没有成功(没有报错,只是单纯的没有创建出文档),可以参考: http://blog.csdn.net/cyco008/article/ ...

  10. BZOJ5311,CF321E 贞鱼

    题意 Problem 5311. -- 贞鱼 5311: 贞鱼 Time Limit: 3 Sec  Memory Limit: 162 MBSubmit: 677  Solved: 150[Subm ...