//--------------------------------------------------------------------
+//--------------------------------------------------------------------
+void clitk::DicomRT_ROI::SetDisplayColor(double r, double v, double b) {
+ mColor.resize(3);
+ mColor[0] = r;
+ mColor[1] = v;
+ mColor[2] = b;
+}
+//--------------------------------------------------------------------
+
+
//--------------------------------------------------------------------
int clitk::DicomRT_ROI::GetROINumber() const {
return mNumber;
const std::vector<double> & GetDisplayColor() const;
vtkPolyData * GetMesh();
const vvImage::Pointer GetImage() const;
+
+ void SetDisplayColor(double r, double v, double b);
protected:
void ComputeMesh();