Interface SpheresParameters

Parameters for a collection of spheres

interface SpheresParameters {
    kind: "spheres";
    parameters: {
        atom?: Partial<SpheresData>[];
        global: Partial<SpheresData>;
        structure?: Partial<SpheresData>[];
    };
}

Hierarchy

  • BaseShapeParameters<SpheresData>
    • SpheresParameters

Properties

Properties

kind
parameters: {
    atom?: Partial<SpheresData>[];
    global: Partial<SpheresData>;
    structure?: Partial<SpheresData>[];
}