mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
93 lines
1.1 KiB
TypeScript
93 lines
1.1 KiB
TypeScript
|
const planeMeshParameters = [
|
||
|
{
|
||
|
rotation: {
|
||
|
x: -Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: 0,
|
||
|
y: 40,
|
||
|
z: 10
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
rotation: {
|
||
|
x: Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: 0,
|
||
|
y: -40,
|
||
|
z: 10
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
rotation: {
|
||
|
y: Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: 40,
|
||
|
y: 0,
|
||
|
z: 10
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
rotation: {
|
||
|
y: -Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: -40,
|
||
|
y: 0,
|
||
|
z: 10
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
rotation: {
|
||
|
x: -Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: 0,
|
||
|
y: 40,
|
||
|
z: -118
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
rotation: {
|
||
|
x: Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: 0,
|
||
|
y: -40,
|
||
|
z: -118
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
rotation: {
|
||
|
y: Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: 40,
|
||
|
y: 0,
|
||
|
z: -118
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
rotation: {
|
||
|
y: -Math.PI / 2
|
||
|
},
|
||
|
scale: 2,
|
||
|
position: {
|
||
|
x: -40,
|
||
|
y: 0,
|
||
|
z: -118
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
|
||
|
export default planeMeshParameters
|