Revit.SDK.Samples.GeometryCreation_BooleanOperation.CS.GeometryCreation.CreateExtrusion C# (CSharp) 메소드

CreateExtrusion() 개인적인 메소드

Create an extrusion geometry
private CreateExtrusion ( List profileLoops, XYZ extrusionDir, double extrusionDist ) : Solid
profileLoops List The profile loops to be extruded
extrusionDir XYZ The direction in which to extrude the profile loops
extrusionDist double The positive distance by which the loops are to be extruded
리턴 Solid
        private Solid CreateExtrusion(List<CurveLoop> profileLoops, XYZ extrusionDir, double extrusionDist)
        {
            return GeometryCreationUtilities.CreateExtrusionGeometry(profileLoops, extrusionDir, extrusionDist);
        }