summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fucon3d.cxx
diff options
context:
space:
mode:
authorPascal Junck <pjunck@openoffice.org>2004-11-03 07:55:52 +0000
committerPascal Junck <pjunck@openoffice.org>2004-11-03 07:55:52 +0000
commit46671b5740f63cd116dd5c7123886b8d885220ef (patch)
tree9021d3e4afa7f61e866f033144e9ea6b87da6e39 /sd/source/ui/func/fucon3d.cxx
parent68f5b0afe38411447f659e84199723afb28ab1cc (diff)
INTEGRATION: CWS aw019 (1.12.218); FILE MERGED
2004/10/21 15:51:13 aw 1.12.218.2: #i34831# 2004/09/29 14:30:16 aw 1.12.218.1: #i11190#
Diffstat (limited to 'sd/source/ui/func/fucon3d.cxx')
-rw-r--r--sd/source/ui/func/fucon3d.cxx59
1 files changed, 28 insertions, 31 deletions
diff --git a/sd/source/ui/func/fucon3d.cxx b/sd/source/ui/func/fucon3d.cxx
index f3e0a93946d6..6be600d9baf7 100644
--- a/sd/source/ui/func/fucon3d.cxx
+++ b/sd/source/ui/func/fucon3d.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fucon3d.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: obo $ $Date: 2004-01-20 10:57:09 $
+ * last change: $Author: pjunck $ $Date: 2004-11-03 08:55:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -186,9 +186,8 @@ E3dCompoundObject* FuConstruct3dObject::ImpCreateBasic3DShape()
XPolygon aXPoly(Point (0, 1250), 2500, 2500, 0, 900, FALSE);
aXPoly.Scale(5.0, 5.0);
- p3DObj = new E3dLatheObj(
- pView->Get3DDefaultAttributes(),
- (XPolygon)XOutCreatePolygon (aXPoly, pWindow));
+//BFS09 p3DObj = new E3dLatheObj(pView->Get3DDefaultAttributes(),(XPolygon)XOutCreatePolygon (aXPoly, pWindow));
+ p3DObj = new E3dLatheObj(pView->Get3DDefaultAttributes(),(XPolygon)XOutCreatePolygon (aXPoly));
// Dies ist ein offenes Objekt, muss daher defaultmaessig
// doppelseitig behandelt werden
@@ -209,17 +208,15 @@ E3dCompoundObject* FuConstruct3dObject::ImpCreateBasic3DShape()
aXPoly.Insert(0, Point (250*5, 1250*5), XPOLY_NORMAL);
aXPoly.Insert(0, Point (50*5, 1250*5), XPOLY_NORMAL);
aXPoly.Insert(0, Point (0*5, 1250*5), XPOLY_NORMAL);
- p3DObj = new E3dLatheObj(
- pView->Get3DDefaultAttributes(),
- (XPolygon)XOutCreatePolygon (aXPoly, pWindow));
+//BFS09 p3DObj = new E3dLatheObj(pView->Get3DDefaultAttributes(),(XPolygon)XOutCreatePolygon (aXPoly, pWindow));
+ p3DObj = new E3dLatheObj(pView->Get3DDefaultAttributes(),(XPolygon)XOutCreatePolygon (aXPoly));
break;
}
case SID_3D_TORUS:
{
- p3DObj = new E3dLatheObj(
- pView->Get3DDefaultAttributes(),
- (XPolygon)XOutCreatePolygon(XPolygon (Point (1000, 0), 500, 500, 0, 3600), pWindow));
+//BFS09 p3DObj = new E3dLatheObj(pView->Get3DDefaultAttributes(),(XPolygon)XOutCreatePolygon(XPolygon (Point (1000, 0), 500, 500, 0, 3600), pWindow));
+ p3DObj = new E3dLatheObj(pView->Get3DDefaultAttributes(),(XPolygon)XOutCreatePolygon(XPolygon (Point (1000, 0), 500, 500, 0, 3600)));
break;
}
@@ -364,26 +361,26 @@ void FuConstruct3dObject::ImpPrepareBasic3DShape(E3dCompoundObject* p3DObj, E3dS
break;
}
- if (nSlotId == SID_3D_SPHERE)
- {
- // Keine Sortierung noetig
- pScene->SetSortingMode(E3D_SORT_NO_SORTING);
- }
- else if (nSlotId == SID_3D_CYLINDER)
- {
- // Das muss auch ohne aufwendige Sortierung gehen!
- // Ersteinaml jedoch: Sortierung ueber Lookupfield
- pScene->SetSortingMode(E3D_SORT_LOOKUP_FIELD |
- E3D_SORT_IN_PARENTS |
- E3D_SORT_TEST_LENGTH);
- }
- else
- {
- // Einfache Sortierung
- pScene->SetSortingMode(E3D_SORT_FAST_SORTING |
- E3D_SORT_IN_PARENTS |
- E3D_SORT_TEST_LENGTH);
- }
+//BFS02 if (nSlotId == SID_3D_SPHERE)
+//BFS02 {
+//BFS02 // Keine Sortierung noetig
+//BFS02 pScene->SetSortingMode(E3D_SORT_NO_SORTING);
+//BFS02 }
+//BFS02 else if (nSlotId == SID_3D_CYLINDER)
+//BFS02 {
+//BFS02 // Das muss auch ohne aufwendige Sortierung gehen!
+//BFS02 // Ersteinaml jedoch: Sortierung ueber Lookupfield
+//BFS02 pScene->SetSortingMode(E3D_SORT_LOOKUP_FIELD |
+//BFS02 E3D_SORT_IN_PARENTS |
+//BFS02 E3D_SORT_TEST_LENGTH);
+//BFS02 }
+//BFS02 else
+//BFS02 {
+//BFS02 // Einfache Sortierung
+//BFS02 pScene->SetSortingMode(E3D_SORT_FAST_SORTING |
+//BFS02 E3D_SORT_IN_PARENTS |
+//BFS02 E3D_SORT_TEST_LENGTH);
+//BFS02 }
pScene->FitSnapRectToBoundVol();