Home
last modified time | relevance | path

Searched refs:sn (Results 1 – 25 of 56) sorted by relevance

123

/trunk/main/svx/source/svdraw/
H A Dsvdtrans.cxx128 RotatePoint(rPoly[i],rRef,sn,cs); in RotatePoly()
136 RotatePoint(rPoly[i],rRef,sn,cs); in RotateXPoly()
144 RotatePoly(rPoly[i],rRef,sn,cs); in RotatePoly()
152 RotateXPoly(rPoly[i],rRef,sn,cs); in RotateXPoly()
287 double sn=sin(nWink); in CrookRotateXPoint() local
289 RotatePoint(rPnt,rCenter,sn,cs); in CrookRotateXPoint()
306 RotatePoint(*pC1,rCenter,sn,cs); in CrookRotateXPoint()
326 rSin=sn; in CrookRotateXPoint()
367 double sn=sin(nWink); in CrookSlantXPoint() local
369 RotatePoint(rPnt,rCenter,sn,cs); in CrookSlantXPoint()
[all …]
H A Dsvdogrp.cxx492 void SdrObjGroup::NbcRotate(const Point& rRef, long nWink, double sn, double cs) in NbcRotate() argument
495 RotatePoint(aRefPoint,rRef,sn,cs); in NbcRotate()
500 pObj->NbcRotate(rRef,nWink,sn,cs); in NbcRotate()
502 NbcRotateGluePoints(rRef,nWink,sn,cs); in NbcRotate()
659 void SdrObjGroup::Rotate(const Point& rRef, long nWink, double sn, double cs) in Rotate() argument
664 RotatePoint(aRefPoint,rRef,sn,cs); in Rotate()
671 if (pObj->IsEdgeObj()) pObj->Rotate(rRef,nWink,sn,cs); in Rotate()
675 if (!pObj->IsEdgeObj()) pObj->Rotate(rRef,nWink,sn,cs); in Rotate()
677 NbcRotateGluePoints(rRef,nWink,sn,cs); in Rotate()
H A Dsvdotxtr.cxx255 void SdrTextObj::NbcRotate(const Point& rRef, long nWink, double sn, double cs) in NbcRotate() argument
261 RotatePoint(aP,rRef,sn,cs); in NbcRotate()
268 aGeo.nSin=sn; in NbcRotate()
275 NbcRotateGluePoints(rRef,nWink,sn,cs); in NbcRotate()
H A Dsvdovirt.cxx391 void SdrVirtObj::NbcRotate(const Point& rRef, long nWink, double sn, double cs) in NbcRotate() argument
393 rRefObj.NbcRotate(rRef-aAnchor,nWink,sn,cs); in NbcRotate()
433 void SdrVirtObj::Rotate(const Point& rRef, long nWink, double sn, double cs) in Rotate() argument
437 rRefObj.Rotate(rRef-aAnchor,nWink,sn,cs); in Rotate()
H A Dsvdglue.cxx178 void SdrGluePoint::Rotate(const Point& rRef, long nWink, double sn, double cs, const SdrObject* pOb… in Rotate() argument
181 RotatePoint(aPt,rRef,sn,cs); in Rotate()
375 void SdrGluePointList::Rotate(const Point& rRef, long nWink, double sn, double cs, const SdrObject*… in Rotate() argument
379 GetObject(nNum)->Rotate(rRef,nWink,sn,cs,pObj); in Rotate()
H A Dsvdobj.cxx1493 void SdrObject::NbcRotate(const Point& rRef, long nWink, double sn, double cs) in NbcRotate() argument
1498 if (sn==1.0 && cs==0.0) { // 90deg in NbcRotate()
1503 } else if (sn==0.0 && cs==-1.0) { // 180deg in NbcRotate()
1508 } else if (sn==-1.0 && cs==0.0) { // 270deg in NbcRotate()
1517 NbcRotateGluePoints(rRef,nWink,sn,cs); in NbcRotate()
1583 void SdrObject::Rotate(const Point& rRef, long nWink, double sn, double cs) in Rotate() argument
1588 NbcRotate(rRef,nWink,sn,cs); in Rotate()
2381 void SdrObject::NbcRotateGluePoints(const Point& rRef, long nWink, double sn, double cs) in NbcRotateGluePoints() argument
2388 pGPL->Rotate(rRef,nWink,sn,cs,this); in NbcRotateGluePoints()
H A Dsvdorect.cxx503 void SdrRectObj::NbcRotate(const Point& rRef, long nWink, double sn, double cs) in NbcRotate() argument
505 SdrTextObj::NbcRotate(rRef,nWink,sn,cs); in NbcRotate()
/trunk/main/svx/source/engine3d/
H A Dscene3d.cxx649 void E3dScene::RotateScene (const Point& rRef, long /*nWink*/, double sn, double cs) in RotateScene() argument
670 if (sn==1.0 && cs==0.0) { // 90deg in RotateScene()
673 } else if (sn==0.0 && cs==-1.0) { // 180deg in RotateScene()
676 } else if (sn==-1.0 && cs==0.0) { // 270deg in RotateScene()
685 NewCenter.X() = (long) (Center.X() * cs - Center.Y() * sn); in RotateScene()
686 NewCenter.Y() = (long) (Center.X() * sn + Center.Y() * cs); in RotateScene()
753 void E3dScene::NbcRotate(const Point& rRef, long nWink, double sn, double cs) in NbcRotate() argument
767 RotateScene (rRef, nWink, sn, cs); // Rotiert die Szene in NbcRotate()
775 …NbcRotateGluePoints(rRef,nWink,sn,cs); // Rotiert die Klebepunkte (die haben noch Koordinaten rel… in NbcRotate()
/trunk/main/svx/inc/svx/
H A Dsvdtrans.hxx74 inline void RotatePoint(Point& rPnt, const Point& rRef, double sn, double cs);
75 SVX_DLLPUBLIC void RotatePoly(Polygon& rPoly, const Point& rRef, double sn, double cs);
76 void RotateXPoly(XPolygon& rPoly, const Point& rRef, double sn, double cs);
77 void RotatePoly(PolyPolygon& rPoly, const Point& rRef, double sn, double cs);
78 void RotateXPoly(XPolyPolygon& rPoly, const Point& rRef, double sn, double cs);
132 inline void RotatePoint(Point& rPnt, const Point& rRef, double sn, double cs) in RotatePoint() argument
136 rPnt.X()=Round(rRef.X()+dx*cs+dy*sn); in RotatePoint()
137 rPnt.Y()=Round(rRef.Y()+dy*cs-dx*sn); in RotatePoint()
H A Dsvdogrp.hxx93 virtual void Rotate(const Point& rRef, long nWink, double sn, double cs);
103 virtual void NbcRotate(const Point& rRef, long nWink, double sn, double cs);
H A Dsvdovirt.hxx110 virtual void NbcRotate(const Point& rRef, long nWink, double sn, double cs);
116 virtual void Rotate(const Point& rRef, long nWink, double sn, double cs);
H A Dsvdglue.hxx106 void Rotate(const Point& rRef, long nWink, double sn, double cs, const SdrObject* pObj);
136 …void Rotate(const Point& rRef, long nWink, double sn, double cs, const SdrObject* p…
H A Dscene3d.hxx221 virtual void NbcRotate(const Point& rRef, long nWink, double sn, double cs);
222 void RotateScene(const Point& rRef, long nWink, double sn, double cs);
H A Dsvdobj.hxx768 virtual void NbcRotate(const Point& rRef, long nWink, double sn, double cs);
774 virtual void Rotate(const Point& rRef, long nWink, double sn, double cs);
931 void NbcRotateGluePoints(const Point& rRef, long nWink, double sn, double cs);
/trunk/main/svtools/source/filter/
H A Dsgvmain.cxx123 x1=dx*cs-dy*sn; in RotatePoint()
124 y1=dy*cs+dx*sn; in RotatePoint()
135 x1=dx*cs-dy*sn; in RotatePoint()
136 y1=dy*cs+dx*sn; in RotatePoint()
577 double sn,cs; in Draw() local
578 sn=sin(double(DrehWink)*3.14159265359/18000); in Draw()
585 RotatePoint(aPts[i],Pos1.x,Pos1.y,sn,cs); in Draw()
759 double sn,cs; in Draw() local
762 sn=sin(double(StartWink)*3.14159265359/18000); in Draw()
764 RotatePoint(a,Center.x,Center.y,sn,cs); in Draw()
[all …]
H A Dsgvtext.cxx1053 double sn,cs; in Draw() local
1078 sn=0.0; in Draw()
1081 sn=sin(double(DrehWink)*3.14159265359/18000); in Draw()
1105 FormatLine(Buf,Index2,T,T2,xSize,xSAdj,xLine,l,sn,cs,cLine,LineFit); in Draw()
1141 if (DrehWink!=0) RotatePoint(Pos,Pos1.x,Pos1.y,sn,cs); in Draw()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/nodes/
H A DScriptNode.java113 private ScriptNode sn; field in ScriptNode.StringProperty
115 public StringProperty(ScriptNode sn, String name, String value) { in StringProperty() argument
118 this.sn = sn; in StringProperty()
/trunk/main/officecfg/registry/schema/
H A Doo-ldap-attr-map.properties25 # person.sn
26 org.openoffice.UserProfile/Data/sn = sn
/trunk/main/solenv/prj/
H A Dbuild.lst1 sn solenv : NULL
2 sn solenv/prj nmake - all sn_prj NULL
/trunk/main/sw/source/filter/rtf/
H A Dswparrtf.cxx1354 String sn; in ReadShapeObject() local
1394 sn=aToken; in ReadShapeObject()
1400 if (sn.EqualsAscii("shapeType")) in ReadShapeObject()
1404 } else if (sn.EqualsAscii("fFilled")) in ReadShapeObject()
1408 } else if (sn.EqualsAscii("fLine")) in ReadShapeObject()
1411 } else if (sn.EqualsAscii("lineWidth")) in ReadShapeObject()
1415 } else if (sn.EqualsAscii("fillColor")) in ReadShapeObject()
1419 }else if (sn.EqualsAscii("txflTextFlow")) in ReadShapeObject()
1423 else if (sn.EqualsAscii("wzDescription")) in ReadShapeObject()
1427 else if(sn.EqualsAscii("wzName")) in ReadShapeObject()
/trunk/main/sw/inc/
H A Ddcontact.hxx332 virtual void NbcRotate(const Point& rRef, long nWink, double sn, double cs);
337 virtual void Rotate(const Point& rRef, long nWink, double sn, double cs);
/trunk/main/wizards/com/sun/star/wizards/web/
H A DWWD_Startup.java516 CGSessionName sn = new CGSessionName(); in prepareSessionLists() local
517 sn.cp_Name = resources.resSessionNameNone; in prepareSessionLists()
518 settings.cp_SavedSessions.add(0, sn); in prepareSessionLists()
/trunk/test/testuno/source/fvt/uno/sd/file/
H A DCheckFileProperties.java97 String sn = (String)nameAcc.getByName("sn"); in getUserName() local
99 if(givenname.length() == 0) name = sn; in getUserName()
100 else name = givenname+" "+sn; in getUserName()
/trunk/main/svtools/source/inc/
H A Dsgvmain.hxx308 void RotatePoint(PointType& P, sal_Int16 cx, sal_Int16 cy, double sn, double cs);
309 void RotatePoint(Point& P, sal_Int16 cx, sal_Int16 cy, double sn, double cs);
/trunk/main/sw/source/core/draw/
H A Ddcontact.cxx2624 void SwDrawVirtObj::NbcRotate(const Point& rRef, long nWink, double sn, double cs) in NbcRotate() argument
2626 rRefObj.NbcRotate(rRef - GetOffset(), nWink, sn, cs); in NbcRotate()
2662 void SwDrawVirtObj::Rotate(const Point& rRef, long nWink, double sn, double cs) in Rotate() argument
2667 rRefObj.Rotate(rRef - GetOffset(), nWink, sn, cs); in Rotate()

Completed in 168 milliseconds

123