Changeset 36d56c for src/units/particle/bspline.cpp
- Timestamp:
- May 11, 2012, 7:45:30 PM (14 years ago)
- Children:
- 2a5451
- Parents:
- 952298
- File:
-
- 1 edited
-
src/units/particle/bspline.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/units/particle/bspline.cpp
r952298 r36d56c 46 46 using namespace VMG; 47 47 48 Particle::BSpline::BSpline(const vmg_float& width) :48 Particle::BSpline::BSpline(const int& near_field_cells, const vmg_float& h) : 49 49 spline_nom((BSPLINE_DEGREE+1)/2), 50 50 spline_denom((BSPLINE_DEGREE+1)/2), … … 54 54 field_denom((BSPLINE_DEGREE+1)/2), 55 55 intervals((BSPLINE_DEGREE+1)/2), 56 R(width) 56 R(near_field_cells*h), 57 near_field_cells(near_field_cells) 57 58 { 58 59 for (unsigned int i=0; i<intervals.size(); ++i)
Note:
See TracChangeset
for help on using the changeset viewer.
