-
Notifications
You must be signed in to change notification settings - Fork 1
SceneOptions
Mithi Sevilla edited this page Sep 2, 2020
·
8 revisions
interface SceneOptions {
paper: ModelOptions
xyPlane?: ModelOptions
sceneEdges?: ModelOptions
crossLines?: ModelOptions
edgeAxes?: AxesOptions
worldAxes?: AxesOptions
cubeAxes?: AxesOptions
}
interface ModelOptions {
color: string
opacity?: number
}
interface AxesOptions {
intersectionPointColor: string
intersectionPointSize?: number
xColor: string
yColor: string
zColor: string
lineSize?: number
edgeOpacity?: number
}The optional elements you can display in addition to your data
-
worldAxes, edgeAxescubeAxesxyPlanecrosslinescubeEdges
Each element is optional (except for paper), if you don't specify the required arguments for any of the elements, this particular element will not be shown.