Adding gnommoeditor in the current version
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import type { GlitchHostBridge, SceneViewMode } from '../types';
|
||||
interface SamplingSystemProps {
|
||||
complexity: number;
|
||||
radius: number;
|
||||
distance: number;
|
||||
theta: number;
|
||||
phi: number;
|
||||
observationMode: 'orbit' | 'randomSphere';
|
||||
allSectors: boolean;
|
||||
cumulative: boolean;
|
||||
K: number;
|
||||
orbitRadius: number;
|
||||
orbitVelocity: number;
|
||||
thetaDrift: number;
|
||||
thetaJitter: number;
|
||||
phiJitter: number;
|
||||
usePoisson: boolean;
|
||||
speedup: number;
|
||||
paused: boolean;
|
||||
sceneView: SceneViewMode;
|
||||
bottomInset?: number;
|
||||
showNumericDiagnostics?: boolean;
|
||||
compactNumericDiagnostics?: boolean;
|
||||
host?: GlitchHostBridge;
|
||||
centerDistribution?: boolean;
|
||||
hideFlyingBars?: boolean;
|
||||
}
|
||||
export declare function SamplingSystem({ complexity, radius, distance, theta, phi, observationMode, allSectors, cumulative, K, orbitRadius, orbitVelocity, thetaDrift, thetaJitter, phiJitter, usePoisson, speedup, paused, sceneView, bottomInset, showNumericDiagnostics, compactNumericDiagnostics, host, centerDistribution, hideFlyingBars }: SamplingSystemProps): import("react/jsx-runtime").JSX.Element;
|
||||
export {};
|
||||
Reference in New Issue
Block a user