论坛帮助 |
社区圈子 |
日历事件 |
2021-12-10, 21:02 | 只看该作者 #2 | ||
|
|||
扫地小沙弥
等级: 八袋长老
|
會這樣應該是你的罐子有標籤的地方不是垂直平整的,而是有些微凸出 好像無法解決,唯一的方法就是改用收縮膜替代標籤 |
||
右列会员因为此帖价值甚高向 A-J 表示感谢: |
dongwenchao0223 (2021-12-11)
|
2021-12-10, 23:23 | 只看该作者 #3 | |||
|
||||
力博
等级: 七袋长老
|
__________________
曦霞一日功,换得闲半生。 凌云志犹在,敢与日月争。 |
|||
右列会员因为此帖价值甚高向 Helix.xu 表示感谢: |
dongwenchao0223 (2021-12-11)
|
2021-12-17, 14:14 | 只看该作者 #6 | ||
|
|||
扫地小沙弥
等级: 八袋长老
|
XML Code The .dae collada file is based on XML. So after exporting your model to a Collada file, you can (and need to) edit it with your favorite text or xml editor and add a printable_area tag (shown below): <visual_scene> ... <extra> <technique profile="EAVIS"> <printable_area id="print_area1" material_based="true"> <frontmaterial>material_id</frontmaterial> <backmaterial></backmaterial> <flatrep>rect</flatrep> <hsizemm>207</hsizemm> <vsizemm>106</vsizemm> </printable_area> </technique> </extra> </visual_scene> Location As with all Collada extensions, the printable_area tag is enclosed in an <extra> and a <technique> tag. Our printable_area tag should be the last tag in the <visual_scene> tag. Material As you can see the printable_area refers to a front material and a back material. This is how you select what parts of the model are printable: Visualizer will apply print modeling to all the parts in the Collada file that use one of these materials mentioned in this tag. These values are material id’s (without the quotes). So you might need to have a look at the <library_material> tag to check what material id to use (in this example the material is material_id. <library_materials> ... <material id="material_id" name="material_name"> <instance_effect url="#effect_id"/> </material> ... </library_materials> hsizemm, vsizemm To make sure the PDF data is mapped correctly on the 3D model, the printable area also defines a flat representation (<flatrep>). Currently we only support a rectangle. The rectangle has a physical size (hsizemm and vsizemm, values are in millimeters). In Visualizer, this rectangle will be used to clip the artwork before it applied to the shape. You can choose the size of this rectangle. It should be large enough to include all the print, but not unnecessarily large (that would reduce the resolution). For more information on this, see the section below on UV mapping. |
||
右列 3 位会员因为此帖价值甚高向 A-J 表示感谢: |