Import Geant4 11.0.0.beta source tree
This commit is contained in:
+114
@@ -0,0 +1,114 @@
|
||||
// Copyright (C) 2010, Guy Barrand. All rights reserved.
|
||||
// See the file tools.license for terms.
|
||||
|
||||
#ifndef tools_sg_line_set
|
||||
#define tools_sg_line_set
|
||||
|
||||
#include "node"
|
||||
|
||||
#include "mf"
|
||||
#include "../stype"
|
||||
#include "render_action"
|
||||
#include "pick_action"
|
||||
#include "bbox_action"
|
||||
|
||||
namespace tools {
|
||||
namespace sg {
|
||||
|
||||
class line_set : public node {
|
||||
TOOLS_NODE(line_set,tools::sg::line_set,node)
|
||||
public:
|
||||
mf_std_vec<float> lines;
|
||||
public:
|
||||
virtual const desc_fields& node_desc_fields() const {
|
||||
TOOLS_FIELD_DESC_NODE_CLASS(tools::sg::line_set)
|
||||
static const desc_fields s_v(parent::node_desc_fields(),1, //WARNING : take care of count.
|
||||
TOOLS_ARG_FIELD_DESC(lines)
|
||||
);
|
||||
return s_v;
|
||||
}
|
||||
private:
|
||||
void add_fields(){
|
||||
add_field(&lines);
|
||||
}
|
||||
public:
|
||||
typedef std::vector<float> line_t;
|
||||
|
||||
virtual void render(render_action& a_action) {
|
||||
tools_vforcit(line_t,lines.values(),it) {
|
||||
a_action.draw_vertex_array(gl::line_strip(),*it);
|
||||
}
|
||||
}
|
||||
|
||||
virtual void pick(pick_action& a_action) {
|
||||
if(a_action.stop_at_first()){
|
||||
tools_vforcit(line_t,lines.values(),it) {
|
||||
a_action.add_line_strip(*it);
|
||||
if(a_action.done()) {
|
||||
a_action.set_node(this);
|
||||
return;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
tools_vforcit(line_t,lines.values(),it) {
|
||||
a_action.set_done(false);
|
||||
a_action.zs().clear();
|
||||
a_action.ws().clear();
|
||||
a_action.add_line_strip(*it);
|
||||
if(a_action.done()) {
|
||||
a_action.add_pick(*this,a_action.zs(),a_action.ws(),a_action.state());
|
||||
a_action.set_done(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
virtual void bbox(bbox_action& a_action) {
|
||||
tools_vforcit(line_t,lines.values(),it) {
|
||||
a_action.add_points(*it);
|
||||
}
|
||||
}
|
||||
|
||||
public:
|
||||
line_set()
|
||||
:parent()
|
||||
,lines()
|
||||
{
|
||||
#ifdef TOOLS_MEM
|
||||
mem::increment(s_class().c_str());
|
||||
#endif
|
||||
add_fields();
|
||||
}
|
||||
virtual ~line_set(){
|
||||
#ifdef TOOLS_MEM
|
||||
mem::decrement(s_class().c_str());
|
||||
#endif
|
||||
}
|
||||
public:
|
||||
line_set(const line_set& a_from)
|
||||
:parent(a_from)
|
||||
,lines(a_from.lines)
|
||||
{
|
||||
#ifdef TOOLS_MEM
|
||||
mem::increment(s_class().c_str());
|
||||
#endif
|
||||
add_fields();
|
||||
}
|
||||
line_set& operator=(const line_set& a_from){
|
||||
parent::operator=(a_from);
|
||||
lines = a_from.lines;
|
||||
return *this;
|
||||
}
|
||||
public:
|
||||
bool add(const line_t& a_line) {
|
||||
size_t npoint = a_line.size()/3;
|
||||
if(npoint*3!=a_line.size()) return false;
|
||||
lines.add(a_line);
|
||||
return true;
|
||||
}
|
||||
void clear() {lines.clear();}
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user