Skip to content

Commit

Permalink
Merge branch 'fix/direction-parallel-isoline' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
oberbichler committed Mar 17, 2021
2 parents f979520 + fe453bf commit f6fa586
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected override void SolveInstance(IGH_DataAccess DA)

protected override Bitmap Icon => null;

public override GH_Exposure Exposure => Info.Experimental ? GH_Exposure.hidden : GH_Exposure.primary;
public override GH_Exposure Exposure => Info.Experimental ? GH_Exposure.primary : GH_Exposure.hidden;

public override Guid ComponentGuid => new Guid("{C9A2B5C9-5F63-4500-8C66-6019147603AA}");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected override void SolveInstance(IGH_DataAccess DA)

protected override Bitmap Icon => null;

public override GH_Exposure Exposure => Info.Experimental ? GH_Exposure.hidden : GH_Exposure.primary;
public override GH_Exposure Exposure => Info.Experimental ? GH_Exposure.primary : GH_Exposure.hidden;

public override Guid ComponentGuid => new Guid("{5300DCE5-F233-4CDA-BDC3-56DB437DA1EF}");
}
Expand Down
2 changes: 1 addition & 1 deletion Bowerbird/Curvature/PrincipalCurvature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public bool FindNormalCurvature(double value, double angleOffset, out Vector3d u

Debug.Assert(dir2.Length > 0);

var l = dir1.Length;
var l = dir2.Length;

u2 /= l;
dir2 /= l;
Expand Down
Binary file modified Bowerbird/Resources/icon_asymptotic_path.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Bowerbird/Resources/icon_principal_path.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f6fa586

Please sign in to comment.