Lines Matching refs:rToBeCopied

826 	ImplB3DPolygon(const ImplB3DPolygon& rToBeCopied)  in ImplB3DPolygon()  argument
827 : maPoints(rToBeCopied.maPoints), in ImplB3DPolygon()
831 maPlaneNormal(rToBeCopied.maPlaneNormal), in ImplB3DPolygon()
832 mbIsClosed(rToBeCopied.mbIsClosed), in ImplB3DPolygon()
833 mbPlaneNormalValid(rToBeCopied.mbPlaneNormalValid) in ImplB3DPolygon()
836 if(rToBeCopied.mpBColors && rToBeCopied.mpBColors->isUsed()) in ImplB3DPolygon()
838 mpBColors = new BColorArray(*rToBeCopied.mpBColors); in ImplB3DPolygon()
841 if(rToBeCopied.mpNormals && rToBeCopied.mpNormals->isUsed()) in ImplB3DPolygon()
843 mpNormals = new NormalsArray3D(*rToBeCopied.mpNormals); in ImplB3DPolygon()
846 if(rToBeCopied.mpTextureCoordiantes && rToBeCopied.mpTextureCoordiantes->isUsed()) in ImplB3DPolygon()
848 mpTextureCoordiantes = new TextureCoordinate2D(*rToBeCopied.mpTextureCoordiantes); in ImplB3DPolygon()
852 ImplB3DPolygon(const ImplB3DPolygon& rToBeCopied, sal_uInt32 nIndex, sal_uInt32 nCount) in ImplB3DPolygon() argument
853 : maPoints(rToBeCopied.maPoints, nIndex, nCount), in ImplB3DPolygon()
858 mbIsClosed(rToBeCopied.mbIsClosed), in ImplB3DPolygon()
862 if(rToBeCopied.mpBColors && rToBeCopied.mpBColors->isUsed()) in ImplB3DPolygon()
864 mpBColors = new BColorArray(*rToBeCopied.mpBColors, nIndex, nCount); in ImplB3DPolygon()
873 if(rToBeCopied.mpNormals && rToBeCopied.mpNormals->isUsed()) in ImplB3DPolygon()
875 mpNormals = new NormalsArray3D(*rToBeCopied.mpNormals, nIndex, nCount); in ImplB3DPolygon()
884 if(rToBeCopied.mpTextureCoordiantes && rToBeCopied.mpTextureCoordiantes->isUsed()) in ImplB3DPolygon()
886 … mpTextureCoordiantes = new TextureCoordinate2D(*rToBeCopied.mpTextureCoordiantes, nIndex, nCount); in ImplB3DPolygon()