Примеры:
Свой код
3 точки
4 сферы
Треугольники
Параметры
Часы
Запуск (ctrl+enter)
Scene { Param { id: xlen text: "x limit " value: 50 } Linestrip { positions: tri.positions opacity: 0.25 } Triangles { id: tri color: [1,0,0] positions: { var a=[]; var xlim = xlen.value; for (var i=0; i<10000; i++) { var x=Math.random()*xlim-xlim/2, y=Math.random()*10*Math.cos(x), z=Math.random()*10; for (var j=0; j<3; j++) { a.push( x+Math.random(10) ); a.push( y+Math.random(10) ); a.push( z+Math.random(10) ); } } return a; } } }