[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
[534] | 2 | // Copyright (C) 1999-2016 Maciej Komosinski and Szymon Ulatowski. |
---|
[286] | 3 | // See LICENSE.txt for details. |
---|
[191] | 4 | |
---|
| 5 | #include "geometrytestutils.h" |
---|
[1045] | 6 | #include <frams/model/geometry/geometryutils.h> |
---|
[191] | 7 | #include <frams/model/geometry/meshbuilder.h> |
---|
| 8 | #include <frams/model/model.h> |
---|
| 9 | #include <frams/util/3d.h> |
---|
| 10 | #include <stdio.h> |
---|
| 11 | |
---|
| 12 | void test(Model &model, const double density) |
---|
| 13 | { |
---|
| 14 | // Creating and preparing result Model object. |
---|
| 15 | Model resultModel; |
---|
| 16 | resultModel.open(); |
---|
[1045] | 17 | GeometryUtils::addAnchorToModel(resultModel); |
---|
[191] | 18 | |
---|
| 19 | // Creating instance of Iterator class (MeshBuilder::ModelSurface in this case). Object is |
---|
| 20 | // placed in stack memory, thus there is no heap memory allocation and creation is fast. |
---|
| 21 | MeshBuilder::ModelSurface iterator(density); |
---|
| 22 | |
---|
| 23 | // Once created, iterator can be used many times, but must be initialized before every time. |
---|
| 24 | iterator.initialize(&model); |
---|
| 25 | |
---|
| 26 | // Creating iterator output object in stack memory. |
---|
| 27 | Pt3D point; |
---|
| 28 | |
---|
| 29 | // Method tryGetNext checks if next point exists and optionally updates fields of Pt3D object. |
---|
| 30 | while (iterator.tryGetNext(point)) |
---|
| 31 | { |
---|
| 32 | // Processing points created by iterator. In this case, they are added to result model as |
---|
| 33 | // small spheres. |
---|
[1045] | 34 | GeometryUtils::addPointToModel(point, resultModel); |
---|
[191] | 35 | } |
---|
| 36 | |
---|
| 37 | // After Iterator initialization there are two alternative ways of using it. |
---|
| 38 | // |
---|
| 39 | // First adds all points to the specified list: |
---|
| 40 | // SListTempl<Pt3D> list; |
---|
| 41 | // iterator.addAllPointsToList(list); |
---|
| 42 | // |
---|
| 43 | // Second executes specified operation for each point: |
---|
| 44 | // Operation func; |
---|
| 45 | // iterator.forEach(func); |
---|
| 46 | // In this case, Operation is derived class of MeshBuilder::Callback class. |
---|
| 47 | |
---|
| 48 | // Finishing result Model and printing its genotype. |
---|
| 49 | resultModel.close(); |
---|
[534] | 50 | puts(resultModel.getF0Geno().getGenesAndFormat().c_str()); |
---|
[191] | 51 | } |
---|
| 52 | |
---|
| 53 | int main(int argc, char *argv[]) |
---|
| 54 | { |
---|
| 55 | return GeometryTestUtils::execute( |
---|
| 56 | "Creates new model built of small spheres covering surface of input model and prints its " |
---|
| 57 | "genotype.", argc, argv, test); |
---|
| 58 | } |
---|