Changeset 662 for cpp/frams/_demos
- Timestamp:
- 04/24/17 18:19:34 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/geometry/geometrytestutils.cpp
r550 r662 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 5Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2017 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 66 66 if (!model.isValid()) 67 67 { 68 fprintf(stderr, "Cannot build Model from this genotype!\n");68 fprintf(stderr, "Cannot build a valid Model from this genotype!\n"); 69 69 return 4; 70 70 } 71 72 test( model);71 SolidsShapeTypeModel sst_model(model); 72 test(sst_model); 73 73 return 0; 74 74 } … … 220 220 fprintf(stderr, 221 221 "%s\n\n" 222 "argument list s:\n"223 "-l FILENAME - to print list of models in file\n"224 "-l FILENAME GENO_ID DENSITY - to load model fromfile and run test\n"225 "-c DENSITY [SHAPE] - to create simple random model and run test\n\n"226 "FILENAME - name of file containing named f0 genotypes\n"222 "argument list:\n" 223 "-l FILENAME - to print the list of models in file\n" 224 "-l FILENAME GENO_ID DENSITY - to load the model from the file and run test\n" 225 "-c DENSITY [SHAPE] - to create a simple random model and run test\n\n" 226 "FILENAME - name of the file containing named f0 genotypes\n" 227 227 "GENO_ID - either genotype name or index (1-based)\n" 228 228 "DENSITY - minimal number of samples per unit\n"
Note: See TracChangeset
for help on using the changeset viewer.