var generateNode = function(id, dept)
{
var pt = new Object();
pt.type = 'geometry';
pt.primitive = 'triangles';
pt.positions = dept.getPositions();
pt.normals = dept.getNormals();
pt.uv = null;
pt.uv2 = null;
pt.indicies = dept.getIndices();
pt.colors = dept.getColors();
return pt;
}
Finally I start the scene. The axis show up and function like I would expect. However the data points do not. I suspect the scene is compiled when first instantiated and subsequent modifications ignored.
Any help would be appreciated.
(Btw, I first tried to use the geo-load service but couldn't figure out a way to add multiple nodes.)