aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/sql/sqlite3-prims.sql
diff options
context:
space:
mode:
authorSean Dague2007-07-17 17:55:37 +0000
committerSean Dague2007-07-17 17:55:37 +0000
commitb07c29cbb56ff8afa97cd39ffd5397e8c5a8647f (patch)
tree4a9356ec8720565ccb0181a436b6320d472e0262 /share/sql/sqlite3-prims.sql
parent* Changed SimpleApp to use EventManager and Scene timer (diff)
downloadopensim-SC_OLD-b07c29cbb56ff8afa97cd39ffd5397e8c5a8647f.zip
opensim-SC_OLD-b07c29cbb56ff8afa97cd39ffd5397e8c5a8647f.tar.gz
opensim-SC_OLD-b07c29cbb56ff8afa97cd39ffd5397e8c5a8647f.tar.bz2
opensim-SC_OLD-b07c29cbb56ff8afa97cd39ffd5397e8c5a8647f.tar.xz
change to floats where needed
Diffstat (limited to '')
-rw-r--r--share/sql/sqlite3-prims.sql20
1 files changed, 10 insertions, 10 deletions
diff --git a/share/sql/sqlite3-prims.sql b/share/sql/sqlite3-prims.sql
index f86b22f..7e6d79d 100644
--- a/share/sql/sqlite3-prims.sql
+++ b/share/sql/sqlite3-prims.sql
@@ -16,14 +16,14 @@ create table prims (
16 EveryoneMask integer, 16 EveryoneMask integer,
17 BaseMask integer, 17 BaseMask integer,
18 -- vectors (converted from LLVector3) 18 -- vectors (converted from LLVector3)
19 PositionX integer, 19 PositionX float,
20 PositionY integer, 20 PositionY float,
21 PositionZ integer, 21 PositionZ float,
22 -- quaternions (converted from LLQuaternion) 22 -- quaternions (converted from LLQuaternion)
23 RotationX integer, 23 RotationX float,
24 RotationY integer, 24 RotationY float,
25 RotationZ integer, 25 RotationZ float,
26 RotationW integer 26 RotationW float
27); 27);
28 28
29create index prims_parent on prims(ParentID); 29create index prims_parent on prims(ParentID);
@@ -36,9 +36,9 @@ create table primshapes (
36 -- Shape is an enum 36 -- Shape is an enum
37 Shape integer, 37 Shape integer,
38 -- vectors (converted from LLVector3) 38 -- vectors (converted from LLVector3)
39 ScaleX integer, 39 ScaleX float,
40 ScaleY integer, 40 ScaleY float,
41 ScaleZ integer, 41 ScaleZ float,
42 -- paths 42 -- paths
43 PCode integer, 43 PCode integer,
44 PathBegin integer, 44 PathBegin integer,