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 | #include "geometrytestutils.h" |
---|
6 | #include <frams/model/geometry/geometryutils.h> |
---|
7 | #include <frams/model/geometry/meshbuilder.h> |
---|
8 | #include <frams/model/model.h> |
---|
9 | #include <stdio.h> |
---|
10 | |
---|
11 | void test(Model &model, const double density) |
---|
12 | { |
---|
13 | // Creating and preparing result Model object. |
---|
14 | Model resultModel; |
---|
15 | resultModel.open(); |
---|
16 | GeometryTestUtils::addAnchorToModel(resultModel); |
---|
17 | |
---|
18 | // Creating instance of Iterator class (MeshBuilder::ModelApices in this case). Object is |
---|
19 | // placed in stack memory, thus there is no heap memory allocation and creation is fast. |
---|
20 | MeshBuilder::BoundingBoxVolume iterator(density); |
---|
21 | |
---|
22 | // Once created, iterator can be used many times, but must be initialized before every time. |
---|
23 | iterator.initialize(model); |
---|
24 | |
---|
25 | // Creating output variable. |
---|
26 | Pt3D point; |
---|
27 | |
---|
28 | // Method tryGetNext checks if next point exists and optionally updates fields of Pt3D object. |
---|
29 | while (iterator.tryGetNext(point)) |
---|
30 | { |
---|
31 | // Processing points created by iterator. In this case, they are added to result model as |
---|
32 | // small spheres only if they are placed inside or on surface of input model. |
---|
33 | if (GeometryUtils::isPointInsideModel(point, model)) |
---|
34 | { |
---|
35 | GeometryTestUtils::addPointToModel(point, resultModel); |
---|
36 | } |
---|
37 | } |
---|
38 | |
---|
39 | // Finishing result Model and printing its genotype. |
---|
40 | resultModel.close(); |
---|
41 | puts(resultModel.getF0Geno().toString().c_str()); |
---|
42 | } |
---|
43 | |
---|
44 | int main(int argc, char *argv[]) |
---|
45 | { |
---|
46 | return GeometryTestUtils::execute( |
---|
47 | "Creates new model built of small spheres filling volume of input model and prints its " |
---|
48 | "genotype.", argc, argv, test); |
---|
49 | } |
---|