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

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

Create a swept and blend geometry
private CreateSweptBlend ( Curve pathCurve, List pathParams, List profileLoops, List vertexPairs ) : Solid
pathCurve Curve The sweep path
pathParams List An increasing sequence of parameters along the path curve
profileLoops List Closed, planar curve loops arrayed along the path
vertexPairs List This input specifies how adjacent profile loops should be connected
Результат Solid
        private Solid CreateSweptBlend(Curve pathCurve, List<double> pathParams, List<CurveLoop> profileLoops, List<ICollection<VertexPair>> vertexPairs)
        {
            return GeometryCreationUtilities.CreateSweptBlendGeometry(pathCurve, pathParams, profileLoops, vertexPairs);
        }