diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-03-31 10:53:57 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-04-08 04:38:19 +0200 |
commit | cc8f652121eb6f43b718f344bed9619eb5785d8e (patch) | |
tree | 9ec72fbc288b314f35a6e86b099a4e82a49970bc /chart2 | |
parent | ee86c908d1d9f8ed19482b3f844e387018b1a904 (diff) |
remove file
Change-Id: I74d1116ae0d5f99bcfbbe67ec1ecbe1a5a89ad8f
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/view/main/3DChartObjects.hxx | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/chart2/source/view/main/3DChartObjects.hxx b/chart2/source/view/main/3DChartObjects.hxx deleted file mode 100644 index ec56ad82b0cf..000000000000 --- a/chart2/source/view/main/3DChartObjects.hxx +++ /dev/null @@ -1,71 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#include <glm/glm.hpp> - -#include <tools/color.hxx> -#include <vcl/bitmapex.hxx> - -namespace chart { - -namespace opengl3D { - -class Renderable3DObject -{ -public: - - virtual ~Renderable3DObject() {}; - - virtual void render() {} -}; - -class Bar : public Renderable3DObject -{ -public: - Bar( const glm::mat4& rPosition ); -private: - bool mbRoundedCorners; - glm::mat4 maPos; - Color maColor; // RGBA fill color - sal_Int32 nUniqueId; -}; - -class Line : public Renderable3DObject -{ -private: - glm::vec3 maPosBegin; - glm::vec3 maPosEnd; - Color maLineColor; // RGBA line color - sal_Int32 nUniqueId; -}; - -class Text : public Renderable3DObject -{ -private: - BitmapEx maText; - glm::vec3 maTopLeft; - glm::vec3 maBottomRight; - sal_Int32 nUniqueId; -}; - -class Rectangle : public Renderable3DObject -{ -private: - glm::vec3 maTopLeft; - glm::vec3 maBottomRight; - sal_Int32 nUniqueId; - Color maColor; // RGBA fill color - Color maLineColor; // RGBA line color -}; - -} - -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |