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
|
// K-3D
// Copyright (c) 1995-2004, 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)
*/
#include <k3dsdk/module.h>
/// Namespace reserved for the deformation plugin module, to protect public symbols from name clashes with other modules
namespace libk3ddeformation
{
extern k3d::iplugin_factory& bend_points_factory();
extern k3d::iplugin_factory& bulge_points_factory();
extern k3d::iplugin_factory& center_points_factory();
extern k3d::iplugin_factory& cylindrical_wave_points_factory();
extern k3d::iplugin_factory& deformation_bone_factory();
extern k3d::iplugin_factory& linear_point_noise_factory();
extern k3d::iplugin_factory& linear_wave_points_factory();
extern k3d::iplugin_factory& rotate_points_factory();
extern k3d::iplugin_factory& scale_points_factory();
extern k3d::iplugin_factory& shear_points_factory();
extern k3d::iplugin_factory& smooth_points_factory();
extern k3d::iplugin_factory& sphereize_points_factory();
extern k3d::iplugin_factory& taper_points_factory();
extern k3d::iplugin_factory& translate_points_factory();
extern k3d::iplugin_factory& twist_points_factory();
} // namespace libk3ddeformation
K3D_MODULE_START(k3d::uuid(0xd848f9e0, 0x6ab349a4, 0xb3554581, 0x3e3f383b), Registry)
Registry.register_factory(libk3ddeformation::bend_points_factory());
Registry.register_factory(libk3ddeformation::bulge_points_factory());
Registry.register_factory(libk3ddeformation::center_points_factory());
Registry.register_factory(libk3ddeformation::cylindrical_wave_points_factory());
Registry.register_factory(libk3ddeformation::deformation_bone_factory());
Registry.register_factory(libk3ddeformation::linear_point_noise_factory());
Registry.register_factory(libk3ddeformation::linear_wave_points_factory());
Registry.register_factory(libk3ddeformation::rotate_points_factory());
Registry.register_factory(libk3ddeformation::scale_points_factory());
Registry.register_factory(libk3ddeformation::shear_points_factory());
Registry.register_factory(libk3ddeformation::smooth_points_factory());
Registry.register_factory(libk3ddeformation::sphereize_points_factory());
Registry.register_factory(libk3ddeformation::taper_points_factory());
Registry.register_factory(libk3ddeformation::translate_points_factory());
Registry.register_factory(libk3ddeformation::twist_points_factory());
K3D_MODULE_END
|