Ejemplo n.º 1
0
        private static void Extrude(Stack operandStack)
        {
            double        extrudeHeight  = Double.Parse((string)operandStack.Pop());
            IfcProfileDef extrudeProfile = (IfcProfileDef)operandStack.Pop();

            operandStack.Push(extrudeProfile.Extrude(extrudeHeight));
        }
Ejemplo n.º 2
0
 public static IfcExtrudedAreaSolid Extrude(this IfcProfileDef sweptArea,
                                            double height)
 {
     return(sweptArea.Extrude(height, null, null));
 }