Home | History | Annotate | Download | only in shape

Lines Matching refs:getControlPoints

98         float[] array = new float[((spline.getControlPoints().size() - 1) * nbSubSegments + 1) * 3];
99 short[] indices = new short[(spline.getControlPoints().size() - 1) * nbSubSegments * 2];
102 for (Iterator<Vector3f> it = spline.getControlPoints().iterator(); it.hasNext();) {
126 for (int j = 0; j < (spline.getControlPoints().size() - 1) * nbSubSegments; j++) {
137 this.setBuffer(VertexBuffer.Type.Index, 2, indices);//(spline.getControlPoints().size() - 1) * nbSubSegments * 2
152 int centerPointsAmount = (spline.getControlPoints().size() + 2) / 3;
157 List<Vector3f> controlPoints = spline.getControlPoints();
232 float[] array = new float[spline.getControlPoints().size() * 3];
233 short[] indices = new short[(spline.getControlPoints().size() - 1) * 2];
238 for (Iterator<Vector3f> it = spline.getControlPoints().iterator(); it.hasNext();) {