Cylinder

Cylinder()

の新しいインスタンスを初期化しますCylinderclass.

public Cylinder()

関連項目


Cylinder(double, double)

の新しいインスタンスを初期化しますCylinderclass.

public Cylinder(double radius, double height)
パラメータタイプ説明
radiusDouble上部キャップと下部キャップの半径。
heightDouble身長。

関連項目


Cylinder(double, double, double)

の新しいインスタンスを初期化しますCylinderclass.

public Cylinder(double radiusTop, double radiusBottom, double height)
パラメータタイプ説明
radiusTopDoubleラジアストップ。
radiusBottomDouble半径の底。
heightDouble身長。

関連項目


Cylinder(double, double, double, int, int, bool)

の新しいインスタンスを初期化しますCylinderclass.

public Cylinder(double radiusTop, double radiusBottom, double height, int radialSegments, 
    int heightSegments, bool openEnded)
パラメータタイプ説明
radiusTopDoubleシリンダーのトップ キャップの半径。
radiusBottomDoubleシリンダーのボトム キャップの半径。
heightDoubleシリンダーの高さ。
radialSegmentsInt32上下の円の放射状セグメント..
heightSegmentsInt32高さセグメント。
openEndedBooleanに設定した場合真実シリンダーにはボトム/トップキャップがありません..

関連項目


Cylinder(string, double, double, double, int, int, bool, double, double)

の新しいインスタンスを初期化しますCylinderclass.

public Cylinder(string name, double radiusTop, double radiusBottom, double height, 
    int radialSegments, int heightSegments, bool openEnded, double thetaStart, double thetaLength)
パラメータタイプ説明
nameStringこのオブジェクトの名前
radiusTopDoubleシリンダーのトップ キャップの半径。
radiusBottomDoubleシリンダーのボトム キャップの半径。
heightDoubleシリンダーの高さ。
radialSegmentsInt32上下の円の放射状セグメント..
heightSegmentsInt32高さセグメント。
openEndedBooleanに設定した場合真実シリンダーにはボトム/トップキャップがありません..
thetaStartDoubleシータスタート。
thetaLengthDoubleシータの長さ。

関連項目