INTEGRATION: CWS presfixes03 (1.3.4); FILE MERGED

2005/04/03 19:19:02 thb 1.3.4.1: #i39245# Adaptions to changed bezier API
This commit is contained in:
Oliver Bolte
2005-04-18 08:09:03 +00:00
parent 46f1018120
commit 1f6d7ccf48
2 changed files with 4 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ public class LinePolyPolygon
public LinePolyPolygon( RealPoint2D[][] points )
{
setPoints( points, 0, 0 );
setPoints( points, 0 );
}
public java.awt.geom.GeneralPath getJavaPath()
@@ -190,9 +190,9 @@ public class LinePolyPolygon
return null;
}
public synchronized void setPoints( RealPoint2D[][] points, int nPolygonIndex, int nPointIndex )
public synchronized void setPoints( RealPoint2D[][] points, int nPolygonIndex )
{
if( nPolygonIndex != 0 || nPointIndex != 0 )
if( nPolygonIndex != 0 )
CanvasUtils.printLog( "LinePolyPolygon.setPoints: subset not yet implemented!" );
path = CanvasUtils.makeGenPathFromLinePoints( points );