------------------------------------------------------------------------------
| 265 | |
| 266 | //------------------------------------------------------------------------------ |
| 267 | void vtkLineSource::SetPoint2(float point2f[3]) |
| 268 | { |
| 269 | double point2d[3]; |
| 270 | point2d[0] = point2f[0]; |
| 271 | point2d[1] = point2f[1]; |
| 272 | point2d[2] = point2f[2]; |
| 273 | SetPoint2(point2d); |
| 274 | } |
| 275 | |
| 276 | //------------------------------------------------------------------------------ |
| 277 | void vtkLineSource::PrintSelf(ostream& os, vtkIndent indent) |