private static void Extrude(Stack operandStack) { double extrudeHeight = Double.Parse((string)operandStack.Pop()); IfcProfileDef extrudeProfile = (IfcProfileDef)operandStack.Pop(); operandStack.Push(extrudeProfile.Extrude(extrudeHeight)); }
public static IfcExtrudedAreaSolid Extrude(this IfcProfileDef sweptArea, double height) { return(sweptArea.Extrude(height, null, null)); }