diff options
author | Aaron Brashears <aaronb@lindenlab.com> | 2007-01-04 23:38:26 +0000 |
---|---|---|
committer | Aaron Brashears <aaronb@lindenlab.com> | 2007-01-04 23:38:26 +0000 |
commit | 3be8a9cc117587157d0591194cb085ad825f8986 (patch) | |
tree | a553d165a10dc128a4ffec43f45ab28d9d8bfc78 /indra/llprimitive/lltree_common.h | |
parent | d60f16540dba5616cd8260046b44ebc2a1047065 (diff) |
Result of svn merge -r56461:56474 svn+ssh://svn/svn/linden/branches/llscene-shuffle into release.
Diffstat (limited to 'indra/llprimitive/lltree_common.h')
-rw-r--r-- | indra/llprimitive/lltree_common.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/indra/llprimitive/lltree_common.h b/indra/llprimitive/lltree_common.h new file mode 100644 index 0000000000..050a7dafa4 --- /dev/null +++ b/indra/llprimitive/lltree_common.h @@ -0,0 +1,30 @@ +/** + * @file lltree_common.h + * @brief LLTree_gene_0 base class + * + * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +// Common data for trees shared between simulator and viewer + +#ifndef LL_LLTREE_COMMON_H +#define LL_LLTREE_COMMON_H + +struct LLTree_gene_0 +{ + // + // The genome for a tree, species 0 + // + U8 scale; // Scales size of the tree ( / 50 = meter) + U8 branches; // When tree forks, how many branches emerge? + U8 twist; // twist about old branch axis for each branch (convert to degrees by dividing/255 * 180) + U8 droop; // Droop away from old branch axis (convert to degrees by dividing/255 * 180) + U8 species; // Branch coloring index + U8 trunk_depth; // max recursions in the main trunk + U8 branch_thickness; // Scales thickness of trunk ( / 50 = meter) + U8 max_depth; // Branch Recursions to flower + U8 scale_step; // How much to multiply scale size at each recursion 0-1.f to convert to float +}; + +#endif |