Interface HollowCylinderOptions

interface HollowCylinderOptions {
    axis?: VectorE3;
    color?: {
        b: number;
        g: number;
        r: number;
    };
    innerRadius?: number;
    length?: number;
    meridian?: VectorE3;
    offset?: VectorE3;
    outerRadius?: number;
    sliceAngle?: number;
    tilt?: SpinorE3;
}

Hierarchy

  • Record<string, unknown>
    • HollowCylinderOptions

Properties

axis?: VectorE3

The symmetry axis and the height of the cylinder.

color?: {
    b: number;
    g: number;
    r: number;
}
innerRadius?: number

The inner radius of the cylinder.

length?: number
meridian?: VectorE3

The starting direction for the slice. A unit vector orthogonal to the height vector.

offset?: VectorE3
outerRadius?: number

The outer radius of the cylinder.

sliceAngle?: number

The angular size of the cylinder. Default is 2 * PI.

tilt?: SpinorE3