From 0c5aa7b273ae7e95f8ee5fc75bab762ed7da512a Mon Sep 17 00:00:00 2001 From: John Collins Date: Sun, 7 Apr 2024 18:33:52 -0700 Subject: [PATCH] Fix inconsistent naming --- bindings/java/src/main/java/manifold3d/MeshUtils.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bindings/java/src/main/java/manifold3d/MeshUtils.java b/bindings/java/src/main/java/manifold3d/MeshUtils.java index 307f57dbc..abf0e2642 100644 --- a/bindings/java/src/main/java/manifold3d/MeshUtils.java +++ b/bindings/java/src/main/java/manifold3d/MeshUtils.java @@ -41,13 +41,13 @@ public static Manifold PolyhedronFromBuffers(DoubleBuffer vertices, long nVertic return Polyhedron(verticesPtr, nVertices, faceBufPtr, lengthsPtr, nFaces); } public static native @ByVal Manifold Loft(@ByRef SimplePolygon polygon, @ByRef DoubleMat4x3Vector transforms); - public static native @ByVal Manifold Loft(@ByRef SimplePolygon polygon, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithm_enum); + public static native @ByVal Manifold Loft(@ByRef SimplePolygon polygon, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithmEnum); public static native @ByVal Manifold Loft(@ByRef Polygons polygons, @ByRef DoubleMat4x3Vector transforms); - public static native @ByVal Manifold Loft(@ByRef Polygons polygons, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithm_enum); + public static native @ByVal Manifold Loft(@ByRef Polygons polygons, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithmEnum); public static native @ByVal Manifold Loft(@ByRef PolygonsVector polygons, @ByRef DoubleMat4x3Vector transforms); - public static native @ByVal Manifold Loft(@ByRef PolygonsVector polygons, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithm_enum); + public static native @ByVal Manifold Loft(@ByRef PolygonsVector polygons, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithmEnum); public static native @ByVal Manifold Loft(@ByRef CrossSectionVector sections, @ByRef DoubleMat4x3Vector transforms); - public static native @ByVal Manifold Loft(@ByRef CrossSectionVector sections, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithm_enum); + public static native @ByVal Manifold Loft(@ByRef CrossSectionVector sections, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithmEnum); public static native @ByVal Manifold Loft(@ByRef CrossSection section, @ByRef DoubleMat4x3Vector transforms); - public static native @ByVal Manifold Loft(@ByRef CrossSection section, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithm_enum); + public static native @ByVal Manifold Loft(@ByRef CrossSection section, @ByRef DoubleMat4x3Vector transforms, LoftAlgorithm algorithmEnum); }