mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-28 22:05:19 +01:00
7 lines
No EOL
209 B
Text
7 lines
No EOL
209 B
Text
function __3dGizmoLine(from, to, color = c_white, alpha = 1) : __3dGizmo() constructor {
|
|
vertex = [
|
|
[ from.x, from.y, from.z, color, alpha ],
|
|
[ to.x, to.y, to.z, color, alpha ],
|
|
];
|
|
VB = build();
|
|
} |