~ubuntu-branches/ubuntu/lucid/structure-synth/lucid

« back to all changes in this revision

Viewing changes to SyntopiaCore/GLEngine/Dot.h

  • Committer: Bazaar Package Importer
  • Author(s): Miriam Ruiz
  • Date: 2009-04-13 13:28:45 UTC
  • Revision ID: james.westby@ubuntu.com-20090413132845-d7d42t4llxjxq0ez
Tags: upstream-0.9
ImportĀ upstreamĀ versionĀ 0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#pragma once
 
2
 
 
3
#include "SyntopiaCore/Math/Vector3.h"
 
4
#include "Object3D.h"
 
5
 
 
6
namespace SyntopiaCore {
 
7
        namespace GLEngine {    
 
8
 
 
9
                class Dot : public Object3D {
 
10
                public:
 
11
                        Dot(SyntopiaCore::Math::Vector3f pos);
 
12
 
 
13
                        virtual ~Dot();
 
14
 
 
15
                        virtual void draw() const;
 
16
 
 
17
                private:
 
18
                        SyntopiaCore::Math::Vector3f pos;
 
19
                };
 
20
 
 
21
        }
 
22
}
 
23