source: cpp/frams/genetics/fF/conv_fF.h @ 286

Last change on this file since 286 was 286, checked in by Maciej Komosinski, 9 years ago

Updated headers

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
4
5#ifndef _CONV_FF_H_
6#define _CONV_FF_H_
7
8#define fF_TOO_MUCH 0.75
9#define fF_TOO_LITTLE 0.10
10
11#define fF_HOLE_RADIUS 0.05f
12#define fF_LONGITUDE_NUM 69
13
14#define fF_LATITUDE_NUM ((fF_LONGITUDE_NUM - 1)*2)
15#define fF_AMOUNT ((fF_LATITUDE_NUM)*(fF_LONGITUDE_NUM))
16
17#define fF_THICK_RATIO 0.95
18
19#define fF_SIZE fF_LONGITUDE_NUM * fF_LATITUDE_NUM + fF_LATITUDE_NUM
20
21#include <frams/util/multimap.h>
22#include <frams/util/sstring.h>
23#include <frams/genetics/genoconv.h>
24#include <frams/model/model.h>
25#include "fF_chamber3d.h"
26
27
28//A point on the surface of a chamber
29struct fF_point
30{
31        double x, y, z;
32        bool inside; //helper field used when computing whether this point is inside some chamber
33};
34
35
36// The f9->f0 converter
37class GenoConv_fF0 : public GenoConverter {
38public:
39        GenoConv_fF0();
40        ~GenoConv_fF0();
41        //implementation of the GenoConverter method
42        SString convert(SString &in, MultiMap *map);
43
44protected:
45        void createSphere(int ktora, fF_chamber3d **chambers, double radius, double div_radius_length, double div_vector_length,
46                double alpha, double gamma, double kx, double ky, double kz);
47        fF_point* generate_points(fF_chamber3d *chamber, int which, double kx, double ky, double kz);
48        double dist(double x1, double y1, double z1, double x2, double y2, double z2);
49        void search_hid(int nr, fF_chamber3d **spheres, double kx_, double ky_, double kz_);
50        int find_hole(int which, double x, double y, double z, fF_chamber3d **chambers, double kx_, double ky_, double kz_);
51
52private:
53        double* cosines;
54        double* sines;
55        void precompute_cos_and_sin();
56        Part *addNewPart(Model *m, const fF_chamber3d* c);
57};
58
59#endif
Note: See TracBrowser for help on using the repository browser.