File: vtkXMLKWMarker2DWriter.cxx

package info (click to toggle)
volview 3.4-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 25,204 kB
  • sloc: cpp: 132,585; ansic: 11,612; tcl: 236; sh: 64; makefile: 25; xml: 8
file content (51 lines) | stat: -rw-r--r-- 1,463 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*=========================================================================

  Copyright (c) Kitware, Inc.
  All rights reserved.
  See Copyright.txt or http://www.kitware.com/VolViewCopyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/
#include "XML/vtkXMLKWMarker2DWriter.h"

#include "vtkObjectFactory.h"
#include "vtkKWMarker2D.h"
#include "vtkXMLDataElement.h"

vtkStandardNewMacro(vtkXMLKWMarker2DWriter);
vtkCxxRevisionMacro(vtkXMLKWMarker2DWriter, "$Revision: 1.9 $");

//----------------------------------------------------------------------------
const char* vtkXMLKWMarker2DWriter::GetRootElementName()
{
  return "KWMarker2D";
}

//----------------------------------------------------------------------------
int vtkXMLKWMarker2DWriter::AddAttributes(vtkXMLDataElement *elem)
{
  if (!this->Superclass::AddAttributes(elem))
    {
    return 0;
    }

  vtkKWMarker2D *obj = vtkKWMarker2D::SafeDownCast(this->Object);
  if (!obj)
    {
    vtkWarningMacro(<< "The KWMarker2D is not set!");
    return 0;
    }

  double dbuffer4[4];

  obj->GetPosition(dbuffer4);
  elem->SetVectorAttribute("Position", 4, dbuffer4);

  elem->SetVectorAttribute("Color", 3, obj->GetColor());

  return 1;
}