Lines Matching refs:maPoints

621 	CoordinateDataArray2D							maPoints;  member in ImplB2DPolygon
660 : maPoints(0), in ImplB2DPolygon()
667 : maPoints(rToBeCopied.maPoints), in ImplB2DPolygon()
680 : maPoints(rToBeCopied.maPoints, nIndex, nCount), in ImplB2DPolygon()
697 maPoints = rToBeCopied.maPoints; in operator =()
711 return maPoints.count(); in count()
732 if(maPoints == rCandidate.maPoints) in operator ==()
769 return maPoints.getCoordinate(nIndex); in getPoint()
775 maPoints.setCoordinate(nIndex, rValue); in setPoint()
780 maPoints.reserve(nCount); in reserve()
787 maPoints.append(aCoordinate); in append()
802 maPoints.insert(nIndex, aCoordinate, nCount); in insert()
831 mpControlVector.reset( new ControlVectorArray2D(maPoints.count()) ); in setPrevControlVector()
864 mpControlVector.reset( new ControlVectorArray2D(maPoints.count()) ); in setNextControlVector()
904 const sal_uInt32 nCount(maPoints.count()); in appendBezierSegment()
917 const sal_uInt32 nCount(rSource.maPoints.count()); in insert()
925 mpControlVector.reset( new ControlVectorArray2D(maPoints.count()) ); in insert()
928 maPoints.insert(nIndex, rSource.maPoints); in insert()
950 maPoints.remove(nIndex, nCount); in remove()
964 if(maPoints.count() > 1) in flip()
969 maPoints.flip(mbIsClosed); in flip()
984 const sal_uInt32 nIndex(maPoints.count() - 1); in hasDoublePoints()
986 if(maPoints.getCoordinate(0) == maPoints.getCoordinate(nIndex)) in hasDoublePoints()
1003 for(sal_uInt32 a(0); a < maPoints.count() - 1; a++) in hasDoublePoints()
1005 if(maPoints.getCoordinate(a) == maPoints.getCoordinate(a + 1)) in hasDoublePoints()
1039 if(maPoints.count() > 1) in removeDoublePointsAtBeginEnd()
1041 const sal_uInt32 nIndex(maPoints.count() - 1); in removeDoublePointsAtBeginEnd()
1043 if(maPoints.getCoordinate(0) == maPoints.getCoordinate(nIndex)) in removeDoublePointsAtBeginEnd()
1061 const sal_uInt32 nIndex(maPoints.count() - 1); in removeDoublePointsAtBeginEnd()
1075 maPoints.removeDoublePointsAtBeginEnd(); in removeDoublePointsAtBeginEnd()
1090 while((maPoints.count() > 1) && (nIndex <= maPoints.count() - 2)) in removeDoublePointsWholeTrack()
1092 bool bRemove(maPoints.getCoordinate(nIndex) == maPoints.getCoordinate(nIndex + 1)); in removeDoublePointsWholeTrack()
1124 maPoints.removeDoublePointsWholeTrack(); in removeDoublePointsWholeTrack()
1134 for(sal_uInt32 a(0); a < maPoints.count(); a++) in transform()
1136 basegfx::B2DPoint aCandidate = maPoints.getCoordinate(a); in transform()
1157 maPoints.setCoordinate(a, aCandidate); in transform()
1165 maPoints.transform(rMatrix); in transform()
1171 return maPoints.begin(); in begin()
1176 return maPoints.end(); in end()
1182 return maPoints.begin(); in begin()
1188 return maPoints.end(); in end()