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 131 132 133 134 135
|
// K-3D
// Copyright (c) 1995-2006, Timothy M. Shead
//
// Contact: tshead@k-3d.com
//
// This program 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.
//
// This program 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 this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
/** \file
\author Timothy M. Shead (tshead@k-3d.com)
\author Romain Behar (romainbehar@yahoo.com)
*/
#include <k3dsdk/algebra.h>
#include <k3dsdk/table_copier.h>
#include <k3dsdk/blobby.h>
#include <k3dsdk/document_plugin_factory.h>
#include <k3dsdk/material_sink.h>
#include <k3dsdk/measurement.h>
#include <k3dsdk/mesh_modifier.h>
#include <k3dsdk/node.h>
#include <boost/scoped_ptr.hpp>
namespace module
{
namespace blobby
{
/////////////////////////////////////////////////////////////////////////////
// points_to_blobby
class points_to_blobby :
public k3d::material_sink<k3d::mesh_modifier<k3d::node > >
{
typedef k3d::material_sink<k3d::mesh_modifier<k3d::node > > base;
public:
points_to_blobby(k3d::iplugin_factory& Factory, k3d::idocument& Document) :
base(Factory, Document),
m_radius(init_owner(*this) + init_name("radius") + init_label(_("Radius")) + init_description(_("Points radius")) + init_value(1.0) + init_step_increment(0.1) + init_units(typeid(k3d::measurement::distance)))
{
m_material.changed_signal().connect(make_reset_mesh_slot());
m_radius.changed_signal().connect(make_reset_mesh_slot());
}
void on_create_mesh(const k3d::mesh& Input, k3d::mesh& Output)
{
if(!Input.points)
return;
const k3d::mesh::points_t& input_points = *Input.points;
const k3d::mesh::table_t& input_point_attributes = Input.point_attributes;
boost::scoped_ptr<k3d::blobby::primitive> blobby(k3d::blobby::create(Output));
blobby->vertex_attributes = input_point_attributes.clone_types();
k3d::table_copier point_attributes_copier(input_point_attributes, blobby->vertex_attributes);
const k3d::double_t radius = m_radius.pipeline_value();
k3d::imaterial* const material = m_material.pipeline_value();
blobby->first_primitives.push_back(blobby->primitives.size());
blobby->primitive_counts.push_back(input_points.size());
blobby->first_operators.push_back(blobby->operators.size());
blobby->operator_counts.push_back(1);
blobby->materials.push_back(material);
const k3d::uint_t points_begin = 0;
const k3d::uint_t points_end = points_begin + input_points.size();
for(k3d::uint_t point = points_begin; point != points_end; ++point)
{
blobby->primitives.push_back(k3d::blobby::ELLIPSOID);
blobby->primitive_first_floats.push_back(blobby->floats.size());
blobby->primitive_float_counts.push_back(16);
point_attributes_copier.push_back(point);
k3d::matrix4 matrix = k3d::transpose(k3d::translate3(k3d::to_vector(input_points[point])) * k3d::scale3(radius, radius, radius));
blobby->floats.insert(blobby->floats.end(), static_cast<double*>(matrix), static_cast<double*>(matrix) + 16);
}
blobby->operators.push_back(k3d::blobby::ADD);
blobby->operator_first_operands.push_back(blobby->operands.size());
blobby->operator_operand_counts.push_back(input_points.size() + 1);
blobby->operands.push_back(input_points.size());
for(k3d::uint_t i = 0; i != input_points.size(); ++i)
blobby->operands.push_back(i);
}
void on_update_mesh(const k3d::mesh& Input, k3d::mesh& Output)
{
}
static k3d::iplugin_factory& get_factory()
{
static k3d::document_plugin_factory<points_to_blobby,
k3d::interface_list<k3d::imesh_source,
k3d::interface_list<k3d::imesh_sink > > > factory(
k3d::uuid(0x9d5d69d9, 0xfe994aa0, 0x9b7dee22, 0x1823bd2c),
"PointsToBlobby",
"Converts input points to an implicit surface composed of blobby ellipsoids",
"Blobby",
k3d::iplugin_factory::STABLE);
return factory;
}
private:
k3d_data(k3d::double_t, immutable_name, change_signal, with_undo, local_storage, no_constraint, measurement_property, with_serialization) m_radius;
};
/////////////////////////////////////////////////////////////////////////////
// points_to_blobby_factory
k3d::iplugin_factory& points_to_blobby_factory()
{
return points_to_blobby::get_factory();
}
} // namespace blobby
} // namespace module
|