/** * Copyright (c) 2018-2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Primitive } from './primitive.js'; import { Cage } from './cage.js'; export declare const octahedronVertices: ReadonlyArray; export declare const octahedronIndices: ReadonlyArray; export declare const perforatedOctahedronIndices: ReadonlyArray; export declare function Octahedron(): Primitive; export declare function PerforatedOctahedron(): Primitive; export declare function OctahedronCage(): Cage;