Revit.SDK.Samples.GeometryCreation_BooleanOperation.CS.GeometryCreation.CreateBlend C# (CSharp) Method

CreateBlend() private method

Create a blend geometry
private CreateBlend ( CurveLoop firstLoop, CurveLoop secondLoop, List vertexPairs ) : Solid
firstLoop CurveLoop The first curve loop
secondLoop CurveLoop The second curve loop
vertexPairs List This input specifies how the two profile loops should be connected
return Solid
        private Solid CreateBlend(CurveLoop firstLoop, CurveLoop secondLoop, List<VertexPair> vertexPairs)
        {
            return GeometryCreationUtilities.CreateBlendGeometry(firstLoop, secondLoop, vertexPairs);
        }