Sphere

Sphere()

初始化Sphere默认半径为 1.

public Sphere()

也可以看看


Sphere(double)

初始化Sphere具有指定半径的类。

public Sphere(double radius)
范围类型描述
radiusDouble半径。

也可以看看


Sphere(double, int, int)

初始化Sphere具有指定半径、宽度段和高度段的类。

public Sphere(double radius, int widthSegments, int heightSegments)
范围类型描述
radiusDouble球体的半径。
widthSegmentsInt32宽度段。
heightSegmentsInt32高度段。

也可以看看


Sphere(string, double, int, int, double, double, double, double)

初始化Sphere类.

public Sphere(string name, double radius, int widthSegments, int heightSegments, double phiStart, 
    double phiLength, double thetaStart, double thetaLength)
范围类型描述
nameString姓名。
radiusDouble球体的半径。
widthSegmentsInt32宽度段。
heightSegmentsInt32高度段。
phiStartDouble披开始。
phiLengthDouble披长。
thetaStartDouble西塔开始。
thetaLengthDoubleθ长度。

也可以看看