Changeset 658 for cpp/frams/_demos


Ignore:
Timestamp:
04/24/17 03:14:21 (7 years ago)
Author:
Maciej Komosinski
Message:
  • One function name made shorter
  • Fixed some typos
  • Predictable behavior for empty (zero-Part) Models (that should never happen)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/_demos/geometry/info_test.cpp

    r534 r658  
    3030        Orient axes;
    3131        // Calculating approximate sizes and axes of model. These values are calculated together because
    32         // they depends on each other. Sizes are distances between furthest points on model surface
     32        // they depend on each other. Sizes are distances between furthest points on model surface
    3333        // measured along corresponding axes. Fields sizes.x and axes.x describes the 'length' of 3D
    3434        // model. Fields sizes.y and axes.y desctibes 'width' of 2D model created by projecting original
     
    3737        // points created for each unit of length. It means, that for each square unit of surface area
    3838        // of parts of model, at least density^2 points will be created.
    39         ModelGeometryInfo::findSizesAndAxesOfModel(model, density, sizes, axes);
     39        ModelGeometryInfo::findSizesAndAxes(model, density, sizes, axes);
    4040       
    4141       
    4242        // Creating output variables.
    4343        Pt3D lowerBoundary, upperBoundary;
    44         // Calculationg bounding box of model. Result is stored in variables lowerBoundary and
     44        // Calculating bounding box of model. Result is stored in variables lowerBoundary and
    4545        // upperBoundary.
    4646        ModelGeometryInfo::boundingBox(model, lowerBoundary, upperBoundary);
Note: See TracChangeset for help on using the changeset viewer.