Changeset 972 for cpp/frams/_demos/geometry
- Timestamp:
- 07/03/20 00:32:23 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/geometry/geometrytestutils.cpp
r737 r972 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 17Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 24 24 { 25 25 count++; 26 totalSize += genotype->genotype.len ();27 28 fprintf(stderr, "%d. (%6d chars) %s\n", count, genotype->genotype.len (),26 totalSize += genotype->genotype.length(); 27 28 fprintf(stderr, "%d. (%6d chars) %s\n", count, genotype->genotype.length(), 29 29 genotype->name.c_str()); 30 30 } … … 63 63 if ((genoIndex == count) || (strcmp(genotype->name.c_str(), genoName) == 0)) 64 64 { 65 Model model(genotype->genotype );65 Model model(genotype->genotype, Model::SHAPE_UNKNOWN); 66 66 67 67 if (!model.isValid())
Note: See TracChangeset
for help on using the changeset viewer.