mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Integrated DE plugin functionality. Reworked DE components: - TKDESTEP: Handling STEP file format. - TKDEOBJ: Handling OBJ file format. - TKDEIGES: Handling IGES file format. - TKDEGLTF: Handling GLTF file format. - TKDEVRML: Handling VRML file format. - TKDEPLY: Handling PLY file format. - TKDESTL: Handling STL file format. Reworked DE DRAW components: TKXSDRAWSTEP: Container for DE command to work with STEP. TKXSDRAWOBJ: Container for DE command to work with OBJ. TKXSDRAWIGES: Container for DE command to work with IGES. TKXSDRAWGLTF: Container for DE command to work with GLTF. TKXSDRAWVRML: Container for DE command to work with VRML. TKXSDRAWPLY: Container for DE command to work with PLY. TKXSDRAWSTL: Container for DE command to work with STL. TKXSDRAW rework to be base DRAW plugin to keep DE session and utils. Updated documentation Updated samples
21 lines
468 B
Plaintext
21 lines
468 B
Plaintext
puts "========"
|
|
puts "0030829: BRepExtrema_ShapeProximity crashes with shape from STL/WRL"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload XSDRAW STL
|
|
|
|
box b 10 10 10
|
|
pcylinder c 5 10
|
|
incmesh b 0.1
|
|
incmesh c 0.1
|
|
|
|
writestl b ${imagedir}/${test_image}_b.stl
|
|
writestl c ${imagedir}/${test_image}_c.stl
|
|
readstl b ${imagedir}/${test_image}_b.stl
|
|
readstl c ${imagedir}/${test_image}_c.stl
|
|
file delete ${imagedir}/${test_image}_b.stl
|
|
file delete ${imagedir}/${test_image}_c.stl
|
|
|
|
proximity b c
|