Lines Matching refs:std

39                            ::std::ostream* 		 pStm )  in outputHeader()
44 *pStm << "#!/usr/bin/gnuplot -persist" << ::std::endl << in outputHeader()
45 "#" << ::std::endl << in outputHeader()
46 "# automatically generated by basegfx, don't change!" << ::std::endl << in outputHeader()
47 "#" << ::std::endl << in outputHeader()
48 "# --- " << rTitle.getStr() << " ---" << ::std::endl << in outputHeader()
49 "#" << ::std::endl << in outputHeader()
50 "set parametric" << ::std::endl << in outputHeader()
51 "# set terminal postscript eps enhanced color " << ::std::endl << in outputHeader()
52 "# set output \"plot.eps\"" << ::std::endl << in outputHeader()
57 … "cubicBezier(p,q,r,s,t) = p*(1-t)**3+q*3*(1-t)**2*t+r*3*(1-t)*t**2+s*t**3" << ::std::endl << in outputHeader()
61 … "cubicBezDerivative(p,q,r,s,t) = 3*(q-p)*(1-t)**2+6*(r-q)*(1-t)*t+3*(s-r)*t**2" << ::std::endl << in outputHeader()
66 "line(p,q,r) = p*(1-t)+q*t" << ::std::endl << in outputHeader()
69 "implicitLineX(a,b,c,t) = a*-c + t*-b" << ::std::endl << in outputHeader()
72 "implicitLineY(a,b,c,t) = b*-c + t*a" << ::std::endl << in outputHeader()
73 …"pointmarkx(c,t) = c-0.03*t" << ::std::endl << // hack for displaying single points in p… in outputHeader()
74 …"pointmarky(c,t) = c+0.03*t" << ::std::endl << // hack for displaying single points in p… in outputHeader()
75 "# end of setup" << ::std::endl; in outputHeader()
116 Writer( ::std::ostream* pStm ) : in Writer()
121 void outputPoint( const ::std::pair< B2DPoint, ::rtl::OString >& rElem ) in outputPoint()
124 … *mpStream << " " << rElem.first.getX() << "\t" << rElem.first.getY() << ::std::endl; in outputPoint()
129 void outputVector( const ::std::pair< B2DVector, ::rtl::OString >& rElem ) in outputVector()
132 …*mpStream << " " << rElem.first.getX() << "\t" << rElem.first.getY() << ::std::endl << ::std::endl; in outputVector()
137 void outputRect( const ::std::pair< B2DRange, ::rtl::OString >& rElem ) in outputRect()
150 << nX0 << "\t" << nY0 << ::std::endl << ::std::endl; in outputRect()
162 ::std::ostream* mpStream;
177 ::std::ostream& rOutputStream ) : in DebugPlotter()
229 const ::std::size_t nSize( maPolygons.size() ); in ~DebugPlotter()
230 for( ::std::size_t i=0; i<nSize; ++i ) in ~DebugPlotter()
293 ::std::for_each( maPoints.begin(), in ~DebugPlotter()
305 ::std::for_each( maVectors.begin(), in ~DebugPlotter()
317 ::std::for_each( maRanges.begin(), in ~DebugPlotter()
327 const ::std::size_t nSize( maPolygons.size() ); in ~DebugPlotter()
328 for( ::std::size_t i=0; i<nSize; ++i ) in ~DebugPlotter()
357 maPoints.push_back( ::std::make_pair( rPoint, in plot()
364 maVectors.push_back( ::std::make_pair( rVec, in plot()
374 maPolygons.push_back( ::std::make_pair( aPoly, in plot()
381 maRanges.push_back( ::std::make_pair( rRange, in plot()
388 maPolygons.push_back( ::std::make_pair( rPoly, in plot()
398 maPolygons.push_back( ::std::make_pair( rPoly.getB2DPolygon( i ), in plot()