Hello,
I am sorry to report an other thing, but the problem is very weird, some polygons are not displayed at some coordinates.
Here is a simple example :
At the coordinate (72 ; 251 ; -117), of the first point, the polygon display well, but at (72 ; 252 ; -117), I didn’t see the polygon… which have almost identical coordinate.
var points:Vector.<Number> = new Vector.<Number>();
//points.push(72,252,-117, 105,251,-110, 72,180,-172); // Don't work !
points.push(72,251,-117, 105,251,-110, 72,180,-172); // Work
var indices:Vector.<uint> = Vector.<uint>([0,1,2]);
var sousGeometrie:SubGeometry = new SubGeometry();
sousGeometrie.updateVertexData(points);
sousGeometrie.updateIndexData(indices);
var geometrie:Geometry = new Geometry();
geometrie.addSubGeometry(sousGeometrie);
var materiau:ColorMaterial = new ColorMaterial(0xFFA500);
materiau.bothSides = true;
var modele:Mesh = new Mesh(geometrie, materiau);
Is there something I use wrong ?
Here is the sources files : http://vonc.fr/temp/away3d/Essai.zip