diff options
author | Armin Weiss <aw@openoffice.org> | 2001-02-16 15:01:29 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2001-02-16 15:01:29 +0000 |
commit | 56002717ef0a3bc5e0d790744128a3e1dc99471a (patch) | |
tree | 492919bb307615aacd5547294e1b92538f696577 /svx/source/engine3d/view3d1.cxx | |
parent | 17200994480eb2cbb121d568d92dcd9a796850a7 (diff) |
#84061# The defaults for distance and focal length are not usable,
I replaced them with useful ones for E3dView::Get3DAttributes(..)
and thus for the 3d flyer.
Diffstat (limited to 'svx/source/engine3d/view3d1.cxx')
-rw-r--r-- | svx/source/engine3d/view3d1.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/svx/source/engine3d/view3d1.cxx b/svx/source/engine3d/view3d1.cxx index 59fdbe08247d..6947a6c229e5 100644 --- a/svx/source/engine3d/view3d1.cxx +++ b/svx/source/engine3d/view3d1.cxx @@ -2,9 +2,9 @@ * * $RCSfile: view3d1.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: aw $ $Date: 2001-01-26 14:01:08 $ + * last change: $Author: aw $ $Date: 2001-02-16 16:01:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -273,6 +273,10 @@ SfxItemSet E3dView::Get3DAttributes(E3dScene* pInScene, BOOL bOnly3DAttr) const // ... aber keine Linien fuer 3D aSet.Put(XLineStyleItem (XLINE_NONE)); + + // #84061# new defaults for distance and focal length + aSet.Put(Svx3DDistanceItem(100)); + aSet.Put(Svx3DFocalLengthItem(10000)); } // ItemSet zurueckgeben |