source: cpp/frams/genetics/fF/fF_genotype.cpp @ 174

Last change on this file since 174 was 174, checked in by oriona, 10 years ago

Chambers in Foraminifera grow so that the length of the local communication path is minimal

  • Property svn:eol-style set to native
File size: 971 bytes
Line 
1// This file is a part of the Framsticks GDK.
2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.framsticks.com/ for further information.
4
5#include "fF_genotype.h"
6
7#define FIELDSTRUCT fF_growth_params
8ParamEntry fF_growth_params::paramtab[] =
9{
10        { "fF", 1, 7, "fF" },
11        { "n", 0, PARAM_CANOMITNAME, "number of chambers", "d 1 15 1", FIELD(number_of_chambers), },
12        { "sx", 0, PARAM_CANOMITNAME, "scale x", "f 1.0 1.1 1.01", FIELD(scalex), },
13        { "sy", 0, PARAM_CANOMITNAME, "scale y", "f 1.0 1.1 1.01", FIELD(scaley), },
14        { "sz", 0, PARAM_CANOMITNAME, "scale z", "f 1.0 1.1 1.01", FIELD(scalez), },
15        { "tr", 0, PARAM_CANOMITNAME, "translation factor", "f -1 1 0.5", FIELD(translation), },
16        { "a1", 0, PARAM_CANOMITNAME, "angle 1", "f -3.1415926 3.1415926 0", FIELD(angle1), },
17        { "a2", 0, PARAM_CANOMITNAME, "angle 2", "f -3.1415926 3.1415926 0", FIELD(angle2), },
18        { 0, 0, 0, },
19};
20#undef FIELDSTRUCT
Note: See TracBrowser for help on using the repository browser.