| 78 | |
| 79 | |
| 80 | ContourToDistanceMapParams::ContourToDistanceMapParams( const Vector2i& dmapSize_, |
| 81 | const Vector2f& oriPoint_, const Vector2f& areaSize, bool withSign_ /*= false */ ) : |
| 82 | pixelSize{ areaSize.x / dmapSize_.x, areaSize.y / dmapSize_.y }, |
| 83 | resolution{ dmapSize_ }, |
| 84 | orgPoint{ oriPoint_ }, |
| 85 | withSign{ withSign_ } |
| 86 | { |
| 87 | assert( resolution.x > 0 && resolution.y > 0 ); |
| 88 | } |
| 89 | |
| 90 | ContourToDistanceMapParams::ContourToDistanceMapParams( const Vector2i& dmapSize_, |
| 91 | const Box2f& box, bool withSign_ /*= false */ ) : |