Lines Matching refs:aPoly

149         B2DPolyPolygon 	aPoly;  in impex()  local
153 tools::importFromSvgD( aPoly, aPath0, false, 0 )); in impex()
154 aExport = tools::exportToSvgD( aPoly, true, true, false ); in impex()
159 tools::importFromSvgD( aPoly, aExport, false, 0 )); in impex()
160 aExport = tools::exportToSvgD( aPoly, true, true, false ); in impex()
165 tools::importFromSvgD( aPoly, aPath1, false, 0 )); in impex()
166 aExport = tools::exportToSvgD( aPoly, true, true, false ); in impex()
194 CPPUNIT_ASSERT_MESSAGE("re-imported polygon needs to be identical", aReImport == aPoly); in impex()
196 …CPPUNIT_ASSERT_MESSAGE("importing '@' from SVG-D", tools::importFromSvgD( aPoly, aPath2, , false, … in impex()
197 aExport = tools::exportToSvgD( aPoly, true, true, false ); in impex()
214 CPPUNIT_ASSERT_MESSAGE("re-imported '@' needs to be identical", aReImport == aPoly); in impex()
218 tools::importFromSvgD( aPoly, aExport, false, 0 )); in impex()
219 aExport = tools::exportToSvgD( aPoly, true, true, false ); in impex()
225 tools::importFromSvgD( aPoly, aPath3, false, 0 )); in impex()
226 aExport = tools::exportToSvgD( aPoly, true, true, false ); in impex()
251 tools::importFromSvgD( aPoly, aExport, false, 0 )); in impex()
252 aExport = tools::exportToSvgD( aPoly, true, true, false ); in impex()
968 B2DPolygon aPoly; in testBasics() local
970 aPoly.appendBezierSegment(B2DPoint(1,1),B2DPoint(2,2),B2DPoint(3,3)); in testBasics()
973 aPoly.getB2DPoint(0) == B2DPoint(3,3)); in testBasics()
975 aPoly.getPrevControlPoint(0) == B2DPoint(2,2)); in testBasics()
977 aPoly.getNextControlPoint(0) == B2DPoint(3,3)); in testBasics()
979 aPoly.isNextControlPointUsed(0) == false); in testBasics()
981 aPoly.setNextControlPoint(0,B2DPoint(4,4)); in testBasics()
983 aPoly.getNextControlPoint(0) == B2DPoint(4,4)); in testBasics()
985 aPoly.isNextControlPointUsed(0) == true); in testBasics()
987 aPoly.areControlPointsUsed() == true); in testBasics()
989 aPoly.getContinuityInPoint(0) == CONTINUITY_C2); in testBasics()
991 aPoly.resetControlPoints(); in testBasics()
993 aPoly.getB2DPoint(0) == B2DPoint(3,3)); in testBasics()
995 aPoly.getPrevControlPoint(0) == B2DPoint(3,3)); in testBasics()
997 aPoly.getNextControlPoint(0) == B2DPoint(3,3)); in testBasics()
999 aPoly.areControlPointsUsed() == false); in testBasics()
1001 aPoly.clear(); in testBasics()
1002 aPoly.append(B2DPoint(0,0)); in testBasics()
1003 aPoly.appendBezierSegment(B2DPoint(1,1),B2DPoint(2,2),B2DPoint(3,3)); in testBasics()
1006 aPoly.getB2DPoint(0) == B2DPoint(0,0)); in testBasics()
1008 aPoly.getPrevControlPoint(0) == B2DPoint(0,0)); in testBasics()
1010 aPoly.getNextControlPoint(0) == B2DPoint(1,1)); in testBasics()
1012 aPoly.getPrevControlPoint(1) == B2DPoint(2,2)); in testBasics()
1014 aPoly.getNextControlPoint(1) == B2DPoint(3,3)); in testBasics()
1016 aPoly.getB2DPoint(1) == B2DPoint(3,3)); in testBasics()