Interface SphereParameters

Parameters for a spherical shape

interface SphereParameters {
    kind: "sphere";
    parameters: {
        atom?: Partial<SphereData>[];
        global: Partial<SphereData>;
        structure?: Partial<SphereData>[];
    };
}

Hierarchy

  • BaseShapeParameters<SphereData>
    • SphereParameters

Properties

Properties

kind: "sphere"
parameters: {
    atom?: Partial<SphereData>[];
    global: Partial<SphereData>;
    structure?: Partial<SphereData>[];
}

Type declaration

  • Optional atom?: Partial<SphereData>[]
  • global: Partial<SphereData>
  • Optional structure?: Partial<SphereData>[]