Example #1
0
 public vrValue SetRadius(vrValue iValue)
 {
     if (Algorithm == null || !iValue.IsNumber())
         return null;
     _radius = iValue.GetDouble();
     ((vtkSphereSource) Algorithm).SetRadius(_radius);
     return null;
 }