LibreOffice Module drawinglayer (master) 1
sdrlightattribute3d.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
23
24
26{
28 {
29 public:
30 // 3D light attribute definitions
33
34 bool mbSpecular : 1;
35
37 const basegfx::BColor& rColor,
38 const basegfx::B3DVector& rDirection,
39 bool bSpecular)
40 : maColor(rColor),
41 maDirection(rDirection),
42 mbSpecular(bSpecular)
43 {
44 }
45
46 // data read access
47 const basegfx::BColor& getColor() const { return maColor; }
48 const basegfx::B3DVector& getDirection() const { return maDirection; }
49 bool getSpecular() const { return mbSpecular; }
50
51 bool operator==(const ImpSdr3DLightAttribute& rCandidate) const
52 {
53 return (getColor() == rCandidate.getColor()
54 && getDirection() == rCandidate.getDirection()
55 && getSpecular() == rCandidate.getSpecular());
56 }
57 };
58
60 const basegfx::BColor& rColor,
61 const basegfx::B3DVector& rDirection,
62 bool bSpecular)
63 : mpSdr3DLightAttribute(ImpSdr3DLightAttribute(
64 rColor, rDirection, bSpecular))
65 {
66 }
67
69
71
73
75 {
77 }
78
80 {
81 return mpSdr3DLightAttribute->getColor();
82 }
83
85 {
86 return mpSdr3DLightAttribute->getDirection();
87 }
88
90 {
91 return mpSdr3DLightAttribute->getSpecular();
92 }
93
94} // end of namespace
95
96/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ImpSdr3DLightAttribute(const basegfx::BColor &rColor, const basegfx::B3DVector &rDirection, bool bSpecular)
const basegfx::B3DVector & getDirection() const
bool operator==(const ImpSdr3DLightAttribute &rCandidate) const
Sdr3DLightAttribute(const basegfx::BColor &rColor, const basegfx::B3DVector &rDirection, bool bSpecular)
Sdr3DLightAttribute & operator=(const Sdr3DLightAttribute &)
bool operator==(const Sdr3DLightAttribute &rCandidate) const
const basegfx::B3DVector & getDirection() const