File: arrow_data.cc

package info (click to toggle)
epix 1.2.18-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 3,264 kB
  • ctags: 2,685
  • sloc: cpp: 16,837; sh: 5,075; makefile: 158
file content (130 lines) | stat: -rw-r--r-- 3,383 bytes parent folder | download | duplicates (3)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* 
 * arrow_data.cc -- ePiX arrow class
 *
 * This file is part of ePiX, a C++ library for creating high-quality 
 * figures in LaTeX 
 *
 * Version 1.2.0-2
 * Last Change: September 26, 2007
 */

/* 
 * Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
 * Andrew D. Hwang <rot 13 nujnat at zngupf dot ubylpebff dot rqh>
 * Department of Mathematics and Computer Science
 * College of the Holy Cross
 * Worcester, MA, 01610-2395, USA
 */

/*
 * ePiX is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * ePiX is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
 * License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with ePiX; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <list>
#include <cmath>

#include "triples.h"
#include "functions.h"

#include "camera.h"

#include "edge_data.h"
#include "path_data.h"
#include "clipping.h"

#include "arrow_style.h"
#include "pen_data.h"
#include "paint_style.h"

#include "halfspace.h"
#include "pen_line.h"
#include "pen_arrow.h"

#include "screen_data.h"
#include "screen.h"
#include "active_screen.h"

#include "arrow_data.h"

namespace ePiX {

  arrow_data::arrow_data(const std::vector<P>& pv, const P& base, const P& tip,
			 double scale)
    : m_base(base), m_tip(tip), m_scale(scale),
      m_head_seen(!the_clip_box().clips(m_tip))
  {
    for (unsigned int i=0; i<pv.size()-1; ++i)
      m_shaft.push_back(edge3d(pv.at(i), pv.at(i+1), true));

    the_clip_box().clip_path(m_shaft);
  }

  arrow_data& arrow_data::clip_to(const halfspace& knife)
  {
    knife.clip_path(m_shaft);
    if (knife.clips(m_tip))
      m_head_seen = false;

    return *this;
  }


  void arrow_data::photo(screen& scr, const Camera& mycam,
			 const pen_data& line, const pen_data& under) const
  {
    arrow_data tmp_data(*this);
    if (mycam.needs_clip())
      tmp_data.clip_to(mycam.clip_plane());

    std::list<edge2d> edges;
    for (std::list<edge3d>::const_iterator p=tmp_data.m_shaft.begin();
	 p != tmp_data.m_shaft.end(); ++p)
      {
	edge2d tmp(mycam((*p).tail()), mycam((*p).head()), (*p).is_seen());

	if (!tmp.is_null()) // endpoints not equal
	  edges.push_back(tmp);
      }

    // draw shaft
    scr.m_screen->add_tile(pen_line(line.seen_through(mycam),
				    under.seen_through(mycam), edges));

    // and arrowhead
    if (m_head_seen)
      {
	const P dir(m_tip-m_base);
	const P to_cam(mycam.viewpt()-m_base);

	const double sin_th(norm(dir*to_cam)/(norm(dir)*norm(to_cam)));

	scr.m_screen->add_tile(pen_arrow(mycam(m_base), mycam(m_tip),
					 line.seen_through(mycam),
					 under.seen_through(mycam),
					 m_scale, sin_th, m_head_seen));
      }
  }

  void arrow_data::draw() const
  {
    photo(*active_screen(), cam(),
	  the_paint_style().line_pen(), the_paint_style().base_pen());
  }

  void arrow_data::draw(const pen_data& p1, const pen_data& p2) const
  {
    photo(*active_screen(), cam(), p1, p2);
  }
} // end of namespace