Cylinder: fix incorrect axis samples for closed

experimental
Kirill Vainer 9 years ago
parent 5468a48050
commit b431d16981
  1. 1
      jme3-core/src/main/java/com/jme3/scene/shape/Cylinder.java

@ -222,6 +222,7 @@ public class Cylinder extends Mesh {
// VertexBuffer pvb = getBuffer(Type.Position);
// VertexBuffer nvb = getBuffer(Type.Normal);
// VertexBuffer tvb = getBuffer(Type.TexCoord);
axisSamples += (closed ? 2 : 0);
// Vertices
int vertCount = axisSamples * (radialSamples + 1) + (closed ? 2 : 0);

Loading…
Cancel
Save