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

CreateBlend() 개인적인 메소드

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
리턴 Solid
        private Solid CreateBlend(CurveLoop firstLoop, CurveLoop secondLoop, List<VertexPair> vertexPairs)
        {
            return GeometryCreationUtilities.CreateBlendGeometry(firstLoop, secondLoop, vertexPairs);
        }