------------------------------------------------------------------------------
| 255 | |
| 256 | //------------------------------------------------------------------------------ |
| 257 | void vtkLineSource::SetPoint1(float point1f[3]) |
| 258 | { |
| 259 | double point1d[3]; |
| 260 | point1d[0] = point1f[0]; |
| 261 | point1d[1] = point1f[1]; |
| 262 | point1d[2] = point1f[2]; |
| 263 | SetPoint1(point1d); |
| 264 | } |
| 265 | |
| 266 | //------------------------------------------------------------------------------ |
| 267 | void vtkLineSource::SetPoint2(float point2f[3]) |