summaryrefslogtreecommitdiff
path: root/branches/hugues/glagen/dll/classes/dot.hh
diff options
context:
space:
mode:
authorhugues <hugues@0f7e0d06-a6f9-0310-a55f-d5f984f55e4c>2006-03-25 15:07:51 +0000
committerHugues Hiegel <hugues@hiegel.fr>2008-03-18 10:06:55 +0100
commit56cc59cf44ec64440ba4d1c0d005196195c758e6 (patch)
tree0e4bc431438a05c2e32b8703a8c79dcbf26a7cbf /branches/hugues/glagen/dll/classes/dot.hh
parentd49be924baa2759aefa5b5311a35adf50db48e12 (diff)
Nettoyage du repository glagenHEADmaster
git-svn-id: file:///usr/local/opt/svn/repos/glagen@12 0f7e0d06-a6f9-0310-a55f-d5f984f55e4c
Diffstat (limited to 'branches/hugues/glagen/dll/classes/dot.hh')
-rw-r--r--branches/hugues/glagen/dll/classes/dot.hh49
1 files changed, 0 insertions, 49 deletions
diff --git a/branches/hugues/glagen/dll/classes/dot.hh b/branches/hugues/glagen/dll/classes/dot.hh
deleted file mode 100644
index e13f23c..0000000
--- a/branches/hugues/glagen/dll/classes/dot.hh
+++ /dev/null
@@ -1,49 +0,0 @@
-//
-// dot.hh for Glagen in ~/Galgen/3d
-//
-// Made by Zavie
-// Login <guerta_j@epita.fr>
-//
-// Started on Fri Aug 16 17:08:16 2002 Zavie
-//
-
-#ifndef DOT_HH_
-# define DOT_HH_
-
-class Dot
-{
-public:
-
- // Constructor and destructor
- Dot (double x, double y, double z);
- ~Dot ();
-
- // Reading
- double x ();
- double y ();
- double z ();
-
- void *Property (int i);
- bool Is_checked ();
-
- // Writing
- void set (double x, double y, double z);
- void Use ();
- void Drop ();
- void Del_property (int i);
- void Set_property (int i, void *property);
- void Checked ();
-
- // Other tools
- Dot *Middle (Dot *b);
-
-protected:
- double _x;
- double _y;
- double _z;
- unsigned char _use;
- void **_property;
- char step;
-};
-
-#endif // DOT_HH_