Revise casing and member naming

This commit is contained in:
John Lewin 2018-07-12 12:17:11 -07:00
parent 4d02a77d74
commit 0a67792ab7
2 changed files with 20 additions and 20 deletions

View file

@ -345,7 +345,7 @@ namespace MatterHackers.GCodeVisualizer
int featuresOnLayer = renderFeatures[i].Count;
if (featuresOnLayer > 1)
{
layerVertexBuffer[i].renderRange(0, featureEndIndex[i][featuresOnLayer - 1]);
layerVertexBuffer[i].RenderRange(0, featureEndIndex[i][featuresOnLayer - 1]);
}
}
}
@ -376,7 +376,7 @@ namespace MatterHackers.GCodeVisualizer
{
int ellementCount = featureEndIndex[layerIndex][endFeature - 1] - featureStartIndex[layerIndex][startFeature];
layerVertexBuffer[layerIndex].renderRange(featureStartIndex[layerIndex][startFeature], ellementCount);
layerVertexBuffer[layerIndex].RenderRange(featureStartIndex[layerIndex][startFeature], ellementCount);
}
}
GL.PopAttrib();