Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Thapa
visualization
Commits
838299a1
Commit
838299a1
authored
Jun 20, 2023
by
Thapa
Browse files
Update 1-Cube.html
parent
2c2d557b
Pipeline
#8088
passed with stage
in 5 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
public/1-Cube.html
View file @
838299a1
...
...
@@ -25,11 +25,16 @@ async function activateXR() {
// The cube will have a different color on each side.
const
materials
=
[
new
THREE
.
MeshBasicMaterial
({
color
:
0x000000
})
new
THREE
.
MeshBasicMaterial
({
color
:
0x000000
}),
new
THREE
.
MeshBasicMaterial
({
color
:
0x444444
}),
new
THREE
.
MeshBasicMaterial
({
color
:
0x5b5b5b
}),
new
THREE
.
MeshBasicMaterial
({
color
:
0x999999
}),
new
THREE
.
MeshBasicMaterial
({
color
:
0xbcbcbc
}),
new
THREE
.
MeshBasicMaterial
({
color
:
0xeeeeee
})
];
// Create the cube and add it to the demo scene.
const
cube
=
new
THREE
.
Mesh
(
new
THREE
.
Cone
Geometry
(
0.5
,
1
,
5
),
materials
);
const
cube
=
new
THREE
.
Mesh
(
new
THREE
.
BoxBuffer
Geometry
(
0.5
,
0.5
,
0.
5
),
materials
);
cube
.
position
.
set
(
0
,
0
,
-
1
);
scene
.
add
(
cube
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment