AnyCAD Rapid API 2025
Help you to create a better world!
全部  命名空间 函数 变量 属性 事件  
SurfaceBuilder类 参考

静态 Public 成员函数

static TopoShape MakeBSplineSurface (TopoShapeList bsplineList, EnumSurfaceBuildAlgorithm buildAlgo)
 
static TopoShape MakeBSplineSurface (GPntList2 arr2Points, DoubleList2 arr2Weights, DoubleList uKnots, DoubleList vKnots, Uint32List uMults, Uint32List vMults, long uDegree, long vDegree, boolean uPeriodic, boolean vPeriodic)
 
static TopoShape MakeBSplineSurface (GPntList2 arr2Points, DoubleList uKnots, DoubleList vKnots, Uint32List uMults, Uint32List vMults, long uDegree, long vDegree, boolean uPeriodic, boolean vPeriodic)
 
static TopoShape PointsToBSplineSurface (GPntList arrPoints, int collumSize)
 
static TopoShape MakeBSplineSurfaceByPoints (GPntList arrPoints, int collumSize)
 
static TopoShape PointsToBSplineSurface (GPntList2 arr2Points)
 
static TopoShape MakeBSplineSurfaceByPointArray (GPntList2 arr2Points)
 
static TopoShape MakeBezierSurface (GPntList2 arr2Points)
 
static TopoShape MakeRuledSurface (TopoShape pEdge1, TopoShape pEdge2)
 
static TopoShape AddHole (TopoShape face, TopoShape wireOfHole)
 
static TopoShape AddHoles (TopoShape face, TopoShapeList wiresOfHoles)
 
static TopoShape MakeSurface (TopoShape face, TopoShape wire)
 
static TopoShape MakeFaces (TopoShapeList edges, double angleTol)
 

详细描述

<>
曲面相关工具.

成员函数说明

◆ AddHole()

static TopoShape SurfaceBuilder.AddHole ( TopoShape face,
TopoShape wireOfHole )
static

在曲面上挖孔

参数
face
wireOfHole孔轮廓线
返回

◆ AddHoles()

static TopoShape SurfaceBuilder.AddHoles ( TopoShape face,
TopoShapeList wiresOfHoles )
static

曲面上挖多个孔

参数
face
wiresOfHoles孔轮廓线
返回

◆ MakeBSplineSurface() [1/2]

static TopoShape SurfaceBuilder.MakeBSplineSurface ( GPntList2 arr2Points,
DoubleList2 arr2Weights,
DoubleList uKnots,
DoubleList vKnots,
Uint32List uMults,
Uint32List vMults,
long uDegree,
long vDegree,
boolean uPeriodic,
boolean vPeriodic )
static

Creates a B-spline surface from 2D control points and parameters

参数
arr2Points2D array of control points arranged as [u][v], dimensions must match surface topology
arr2Weights2D array of weights corresponding to control points. Empty creates non-rational surface
uKnotsKnot vector for U direction, must be non-decreasing
vKnotsKnot vector for V direction, must be non-decreasing
uMultsMultiplicities for U knots, length must match uKnots
vMultsMultiplicities for V knots, length must match vKnots
uDegreePolynomial degree in U direction (≥1)
vDegreePolynomial degree in V direction (≥1)
uPeriodicTrue to create periodic surface in U direction
vPeriodicTrue to create periodic surface in V direction
返回
TopoShapePtr Resulting B-spline surface or nullptr on error

Note: All rows in arr2Points must contain equal number of points. Periodic surfaces require
proper overlap of control points at boundaries according to degree.

◆ MakeBSplineSurface() [2/2]

static TopoShape SurfaceBuilder.MakeBSplineSurface ( TopoShapeList bsplineList,
EnumSurfaceBuildAlgorithm buildAlgo )
static

Construct BSpline Surface by BSpline curves

参数
bsplineListthe BSpline curves
buildAlgothe build method to be used.
返回
TopoShape
参见
EnumSurfaceBuildAlgorithm

◆ MakeFaces()

static TopoShape SurfaceBuilder.MakeFaces ( TopoShapeList edges,
double angleTol )
static

根据边创建平面

参数
edges边的列表
angleTol误差,如1.e-8
返回
面的复合对象。

◆ MakeRuledSurface()

static TopoShape SurfaceBuilder.MakeRuledSurface ( TopoShape pEdge1,
TopoShape pEdge2 )
static

基于曲线生成直纹面

参数
pEdge1the curves
pEdge2the curves
返回
TopoShape the surface

◆ MakeSurface()

static TopoShape SurfaceBuilder.MakeSurface ( TopoShape face,
TopoShape wire )
static

基于轮廓线生成曲面

参数
face曲面
wire轮廓线
返回
新的曲面

◆ PointsToBSplineSurface() [1/2]

static TopoShape SurfaceBuilder.PointsToBSplineSurface ( GPntList arrPoints,
int collumSize )
static

Construct BSpline Surface by points

参数
arrPointsthe points
collumSizethe size of each row.
返回
TopoShape

◆ PointsToBSplineSurface() [2/2]

static TopoShape SurfaceBuilder.PointsToBSplineSurface ( GPntList2 arr2Points)
static

Construct Bezier Surface by points

参数
arr2Pointsthe points
返回
TopoShape