Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

Commit

Permalink
Update distance transform
Browse files Browse the repository at this point in the history
  • Loading branch information
David Reeves committed Aug 29, 2018
1 parent 97290ad commit c2c98f7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions SpatialSlur/Fields/DistanceTransform.cs
Expand Up @@ -408,8 +408,6 @@ public void CalculateL2(GridField3d<double> field, double[] result, bool paralle
/// <param name="parallel"></param>
public void CalculateL2Sqr(GridField3d<double> field, double[] result, bool parallel = false)
{
// TODO test implementation

if (parallel)
{
CalculateL2SqrParallel(field, result);
Expand Down Expand Up @@ -486,8 +484,6 @@ public void CalculateL2Sqr(GridField3d<double> field, double[] result, bool para
/// <param name="result"></param>
private void CalculateL2SqrParallel(GridField3d<double> field, double[] result)
{
// TODO test implementation

(var nx, var ny, var nz) = field.Count;
var nxy = field.CountXY;

Expand Down

0 comments on commit c2c98f7

Please sign in to comment.