source: trunk/packages/vizservers/vtkvis/RpArrow.cpp @ 3492

Last change on this file since 3492 was 3177, checked in by mmc, 12 years ago

Updated all of the copyright notices to reference the transfer to
the new HUBzero Foundation, LLC.

  • Property svn:eol-style set to native
File size: 873 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2/*
3 * Copyright (C) 2004-2012  HUBzero Foundation, LLC
4 *
5 * Author: Leif Delgass <ldelgass@purdue.edu>
6 */
7
8#include <vtkPolyDataMapper.h>
9#include <vtkActor.h>
10#include <vtkArrowSource.h>
11
12#include "RpArrow.h"
13#include "Trace.h"
14
15using namespace Rappture::VtkVis;
16
17Arrow::Arrow() :
18    Shape()
19{
20}
21
22Arrow::~Arrow()
23{
24    TRACE("Deleting Arrow");
25}
26
27void Arrow::update()
28{
29    if (_arrow == NULL) {
30        _arrow = vtkSmartPointer<vtkArrowSource>::New();
31    }
32
33    if (_pdMapper == NULL) {
34        _pdMapper = vtkSmartPointer<vtkPolyDataMapper>::New();
35        _pdMapper->SetResolveCoincidentTopologyToPolygonOffset();
36        _pdMapper->ScalarVisibilityOff();
37    }
38
39    _pdMapper->SetInputConnection(_arrow->GetOutputPort());
40
41    initProp();
42
43    getActor()->SetMapper(_pdMapper);
44    _pdMapper->Update();
45}
Note: See TracBrowser for help on using the repository browser.