总结组件、Google Sketchup 中材料的区域
我正在制作一个插件来总结草图中所有材料的面积。 我已经成功地获得了所有的面孔等,但现在组件进入了图片。
我使用术语“单级或多级组件”,因为我不知道有任何更好的方法来解释组件内部存在组件的情况等等。
我注意到有些组件的 i 级别也不仅仅是 1 级。因此,如果您进入一个组件内部,该组件中可能嵌入了也具有材料的组件。所以我想要的是总结特定组件的所有材料,并获取组件内的所有“递归”材料(如果有)。
那么,如何计算组件(单层或多层)内所有材料的面积?
I am making a plugin to sum up the area of all the material in a Sketch.
I have succeeded in getting all the faces and such, but now the Components come into the picture.
Im using the term single or multi leveled component as i dont know any better way to explain the occurence of having a component inside an component and so on.
I have noticed that some components also have more to i than just 1 level. So if you go inside one component there may be components embedded inside this component that also have materials. So what i want is to sum up all of the material of a specific component and get all the "recursive" materials, if any, inside the component.
So, how do I count the area of all the material inside an component(single or multileveled)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我要做的,假设您循环遍历所有实体并检查实体的类型。
您可以对群组执行相同的操作:
希望有帮助
拉迪斯拉夫
Here is what I would do, let's suppose that you loop through all entities and check for type of entity.
You can do the same with a Group with:
Hope it helps
Ladislav
拉迪斯拉夫的例子并没有深入到所有层面。
为此,您需要一个递归方法:
Ladislav's example doesn't dig into all the levels.
For that you need a recursive method: