In the Geometry class, clone function, there's a bug in cloning the
_segments array.

geometry.addSegment(new Segment(cloneVertex(face._v0),
cloneVertex(face._v1), segment.material));

should be changed to

geometry.addSegment(new Segment(cloneVertex(segment._v0),
cloneVertex(segment._v1), segment.material));

- Greg -

Reply via email to