Lines Matching refs:rSource
76 void impAppendCopy(B3DPolygon& rDest, const B3DPolygon& rSource, sal_uInt32 nIndex) in impAppendCopy() argument
78 rDest.append(rSource.getB3DPoint(nIndex)); in impAppendCopy()
80 if(rSource.areBColorsUsed()) in impAppendCopy()
82 rDest.setBColor(rDest.count() - 1L, rSource.getBColor(nIndex)); in impAppendCopy()
85 if(rSource.areNormalsUsed()) in impAppendCopy()
87 rDest.setNormal(rDest.count() - 1L, rSource.getNormal(nIndex)); in impAppendCopy()
90 if(rSource.areTextureCoordinatesUsed()) in impAppendCopy()
92 rDest.setTextureCoordinate(rDest.count() - 1L, rSource.getTextureCoordinate(nIndex)); in impAppendCopy()
96 …void impAppendInterpolate(B3DPolygon& rDest, const B3DPolygon& rSource, sal_uInt32 nIndA, sal_uInt… in impAppendInterpolate() argument
98 const B3DPoint aCurrPoint(rSource.getB3DPoint(nIndA)); in impAppendInterpolate()
99 const B3DPoint aNextPoint(rSource.getB3DPoint(nIndB)); in impAppendInterpolate()
102 if(rSource.areBColorsUsed()) in impAppendInterpolate()
104 const BColor aCurrBColor(rSource.getBColor(nIndA)); in impAppendInterpolate()
105 const BColor aNextBColor(rSource.getBColor(nIndB)); in impAppendInterpolate()
109 if(rSource.areNormalsUsed()) in impAppendInterpolate()
111 const B3DVector aCurrVector(rSource.getNormal(nIndA)); in impAppendInterpolate()
112 const B3DVector aNextVector(rSource.getNormal(nIndB)); in impAppendInterpolate()
116 if(rSource.areTextureCoordinatesUsed()) in impAppendInterpolate()
118 const B2DPoint aCurrTxCo(rSource.getTextureCoordinate(nIndA)); in impAppendInterpolate()
119 const B2DPoint aNextTxCo(rSource.getTextureCoordinate(nIndB)); in impAppendInterpolate()