Extrusion of solid
Posted: 02 Feb 2015, 18:24
Hi,
I have a squareSolid:TsgDXFSolid that I want to extrude.
If I use...
...nothing happens. If I use...
...the solid looks like it has been rotated but there is no extrusion.
Am I missing something?
-Mike
I have a squareSolid:TsgDXFSolid that I want to extrude.
If I use...
Code: Select all
squareSolid.Point := MakeFPoint(0, 0, 0);
squareSolid.Point1 := MakeFPoint(10, 0, 0);
squareSolid.Point2 := MakeFPoint(10, 10, 0);
squareSolid.Point3 := MakeFPoint(0, 10, 0)
squareSolid.Extrusion := MakeFPoint(0, 0, 10);
Code: Select all
squareSolid.Extrusion := MakeFPoint(0, 10, 10);
Am I missing something?
-Mike