Revit.SDK.Samples.GeometryCreation_BooleanOperation.CS.GeometryCreation.CreateSwept C# (CSharp) Метод

CreateSwept() приватный Метод

Create a swept geometry
private CreateSwept ( CurveLoop sweepPath, int pathAttachmentCrvIdx, double pathAttachmentParam, List profileLoops ) : Solid
sweepPath CurveLoop The sweep path, consisting of a set of contiguous curves
pathAttachmentCrvIdx int The index of the curve in the sweep path where the profile loops are situated
pathAttachmentParam double Parameter of the path curve specified by pathAttachmentCrvIdx
profileLoops List The curve loops defining the planar domain to be swept along the path
Результат Solid
        private Solid CreateSwept(CurveLoop sweepPath, int pathAttachmentCrvIdx, double pathAttachmentParam, List<CurveLoop> profileLoops)
        {
            return GeometryCreationUtilities.CreateSweptGeometry(sweepPath, pathAttachmentCrvIdx, pathAttachmentParam, profileLoops);
        }