aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/graph/geom/Outline.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/jogamp/graph/geom/Outline.java')
-rw-r--r--src/com/jogamp/graph/geom/Outline.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/jogamp/graph/geom/Outline.java b/src/com/jogamp/graph/geom/Outline.java
index d9bde4177..4e588623e 100644
--- a/src/com/jogamp/graph/geom/Outline.java
+++ b/src/com/jogamp/graph/geom/Outline.java
@@ -30,8 +30,8 @@ package com.jogamp.graph.geom;
import java.util.ArrayList;
import com.jogamp.graph.geom.Vertex;
+import com.jogamp.graph.math.VectorUtil;
-import jogamp.graph.math.VectorFloatUtil;
/** Define a single continuous stroke by control vertices.
@@ -124,7 +124,7 @@ public class Outline<T extends Vertex> implements Comparable<Outline<T>>{
if(closed){
T first = vertices.get(0);
T last = getLastVertex();
- if(!VectorFloatUtil.checkEquality(first.getCoord(), last.getCoord())){
+ if(!VectorUtil.checkEquality(first.getCoord(), last.getCoord())){
@SuppressWarnings("unchecked")
T v = (T) first.clone();
vertices.add(v);