GeometryAPI.Cylinder.Cylinder C# (CSharp) 메소드

Cylinder() 공개 메소드

public Cylinder ( Vector3D bottomBase, Vector3D topBase, double radius ) : System
bottomBase Vector3D
topBase Vector3D
radius double
리턴 System
        public Cylinder(Vector3D bottomBase, Vector3D topBase, double radius)
            : base(bottomBase, topBase)
        {
            this.BottomBase = bottomBase;
            this.TopBase = topBase;
            this.Radius = radius;
        }