Ejemplo n.º 1
0
 /// <summary>
 /// Create a blend geometry
 /// </summary>
 /// <param name="firstLoop">The first curve loop</param>
 /// <param name="secondLoop">The second curve loop</param>
 /// <param name="vertexPairs">This input specifies how the two profile loops should be connected</param>
 /// <returns>The created solid</returns>
 private Solid CreateBlend(CurveLoop firstLoop, CurveLoop secondLoop, List <VertexPair> vertexPairs)
 {
     return(GeometryCreationUtilities.CreateBlendGeometry(firstLoop, secondLoop, vertexPairs));
 }