Skip to content

Commit

Permalink
Made function name to PascalCase to follow C#'s naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszhermansdorfer committed Sep 8, 2019
1 parent 8c38bf4 commit 6e99aa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SandWorm/SandWormComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ protected override void SolveInstance(IGH_DataAccess DA)
unitsMultiplier = 0.0328084;
break;
}
sensorElevation = sensorElevation / unitsMultiplier; // Standardise to mm to match sensor units
sensorElevation /= unitsMultiplier; // Standardise to mm to match sensor units

Stopwatch timer = Stopwatch.StartNew(); //debugging

Expand All @@ -199,7 +199,7 @@ protected override void SolveInstance(IGH_DataAccess DA)
Point3f tempPoint = new Point3f();
outputMesh = new List<Mesh>();
output = new List<String>(); //debugging
Core.PixelSize depthPixelSize = Core.getDepthPixelSpacing(sensorElevation);
Core.PixelSize depthPixelSize = Core.GetDepthPixelSpacing(sensorElevation);
vertexColors = new Color[(KinectController.depthHeight - topRows - bottomRows) * (KinectController.depthWidth - leftColumns - rightColumns)];


Expand Down

0 comments on commit 6e99aa3

Please sign in to comment.