SSTUTools.CylinderMeshGenerator.CylinderMeshGenerator C# (CSharp) Method

CylinderMeshGenerator() public method

public CylinderMeshGenerator ( Vector3 offset, int faces, float height, float bottomRadius, float topRadius, float bottomInnerRadius, float topInnerRadius ) : System
offset Vector3
faces int
height float
bottomRadius float
topRadius float
bottomInnerRadius float
topInnerRadius float
return System
        public CylinderMeshGenerator(Vector3 offset, int faces, float height, float bottomRadius, float topRadius, float bottomInnerRadius, float topInnerRadius)
        {
            this.offset = offset;
            this.faces = faces;
            this.height = height;
            this.bottomRadius = bottomRadius;
            this.topRadius = topRadius;
            this.bottomInnerRadius =  bottomInnerRadius;
            this.topInnerRadius = topInnerRadius;
        }