Home
last modified time | relevance | path

Searched refs:Placer (Results 1 – 25 of 829) sorted by relevance

12345678910>>...34

/dports/math/vtk8/VTK-8.2.0/Interaction/Widgets/
H A DvtkImageActorPointPlacer.cxx30 this->Placer = vtkBoundedPlanePointPlacer::New(); in vtkImageActorPointPlacer()
45 this->Placer->Delete(); in ~vtkImageActorPointPlacer()
194 this->Placer->SetProjectionNormal(axis); in UpdateInternalState()
197 this->Placer->RemoveAllBoundingPlanes(); in UpdateInternalState()
206 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
212 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
221 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
227 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
236 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
242 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
[all …]
/dports/math/vtk9/VTK-9.1.0/Interaction/Widgets/
H A DvtkImageActorPointPlacer.cxx30 this->Placer = vtkBoundedPlanePointPlacer::New(); in vtkImageActorPointPlacer()
45 this->Placer->Delete(); in ~vtkImageActorPointPlacer()
179 this->Placer->SetProjectionNormal(axis); in UpdateInternalState()
182 this->Placer->RemoveAllBoundingPlanes(); in UpdateInternalState()
191 this->Placer->AddBoundingPlane(plane); in UpdateInternalState()
197 this->Placer->AddBoundingPlane(plane); in UpdateInternalState()
206 this->Placer->AddBoundingPlane(plane); in UpdateInternalState()
212 this->Placer->AddBoundingPlane(plane); in UpdateInternalState()
221 this->Placer->AddBoundingPlane(plane); in UpdateInternalState()
227 this->Placer->AddBoundingPlane(plane); in UpdateInternalState()
[all …]
/dports/math/vtk6/VTK-6.2.0/Interaction/Widgets/
H A DvtkImageActorPointPlacer.cxx30 this->Placer = vtkBoundedPlanePointPlacer::New(); in vtkImageActorPointPlacer()
45 this->Placer->Delete(); in ~vtkImageActorPointPlacer()
194 this->Placer->SetProjectionNormal(axis); in UpdateInternalState()
197 this->Placer->RemoveAllBoundingPlanes(); in UpdateInternalState()
206 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
212 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
221 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
227 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
236 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
242 this->Placer->AddBoundingPlane( plane ); in UpdateInternalState()
[all …]
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/include/osgParticle/
H A DPlacer28 … a particle as input, and places it somewhere by setting its position vector. Placer objects are
31 class Placer: public osg::Object {
33 inline Placer();
34 inline Placer(const Placer& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
37 virtual const char* className() const { return "Placer"; }
38 …virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Placer *>(obj)…
50 ~Placer() {}
51 Placer& operator=(const Placer& ) { return *this; }
56 inline Placer::Placer()
61 inline Placer::Placer(const Placer& copy, const osg::CopyOp& copyop)
H A DModularEmitter22 #include <osgParticle/Placer>
67 /// Get the Placer object.
68 inline Placer* getPlacer();
70 /// Get the const Placer object.
71 inline const Placer* getPlacer() const;
73 /// Set the Placer object.
74 inline void setPlacer(Placer* p);
95 osg::ref_ptr<Placer> _placer;
126 inline Placer* ModularEmitter::getPlacer()
131 inline const Placer* ModularEmitter::getPlacer() const
[all …]
H A DCompositePlacer18 #include <osgParticle/Placer>
26 class CompositePlacer : public Placer
29 CompositePlacer() : Placer() {}
32 : Placer(copy, copyop), _placers(copy._placers) {}
37 void setPlacer( unsigned int i, Placer* p )
44 void addPlacer( Placer* p ) { _placers.push_back(p); }
51 Placer* getPlacer( unsigned int i ) { return _placers[i].get(); }
52 const Placer* getPlacer( unsigned int i ) const { return _placers[i].get(); }
70 typedef std::vector< osg::ref_ptr<Placer> > PlacerList;
H A DCenteredPlacer18 #include <osgParticle/Placer>
29 class CenteredPlacer: public Placer {
36 …virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Placer* >(obj)…
57 : Placer(), center_(0, 0, 0)
62 : Placer(copy, copyop), center_(copy.center_)
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/include/osgParticle/
H A DPlacer28 … a particle as input, and places it somewhere by setting its position vector. Placer objects are
31 class Placer: public osg::Object {
33 inline Placer();
34 inline Placer(const Placer& copy, const osg::CopyOp& copyop = osg::CopyOp::SHALLOW_COPY);
37 virtual const char* className() const { return "Placer"; }
38 …virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Placer *>(obj)…
50 ~Placer() {}
51 Placer& operator=(const Placer& ) { return *this; }
56 inline Placer::Placer()
61 inline Placer::Placer(const Placer& copy, const osg::CopyOp& copyop)
H A DModularEmitter22 #include <osgParticle/Placer>
67 /// Get the Placer object.
68 inline Placer* getPlacer();
70 /// Get the const Placer object.
71 inline const Placer* getPlacer() const;
73 /// Set the Placer object.
74 inline void setPlacer(Placer* p);
95 osg::ref_ptr<Placer> _placer;
126 inline Placer* ModularEmitter::getPlacer()
131 inline const Placer* ModularEmitter::getPlacer() const
[all …]
H A DCompositePlacer18 #include <osgParticle/Placer>
26 class CompositePlacer : public Placer
29 CompositePlacer() : Placer() {}
32 : Placer(copy, copyop), _placers(copy._placers) {}
37 void setPlacer( unsigned int i, Placer* p )
44 void addPlacer( Placer* p ) { _placers.push_back(p); }
51 Placer* getPlacer( unsigned int i ) { return _placers[i].get(); }
52 const Placer* getPlacer( unsigned int i ) const { return _placers[i].get(); }
70 typedef std::vector< osg::ref_ptr<Placer> > PlacerList;
H A DCenteredPlacer18 #include <osgParticle/Placer>
29 class CenteredPlacer: public Placer {
36 …virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Placer* >(obj)…
57 : Placer(), center_(0, 0, 0)
62 : Placer(copy, copyop), center_(copy.center_)
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libnest2d/include/libnest2d/
H A Dlibnest2d.hpp60 template<class Placer = NfpPlacer, class Selector = FirstFitSelection>
62 typename Placer::Config placer_config;
64 using Placement = typename Placer::Config;
68 NestConfig(const typename Placer::Config &cfg) : placer_config{cfg} {} in NestConfig()
70 NestConfig(const typename Placer::Config & pcfg, in NestConfig()
87 template<class Placer = NfpPlacer,
91 const typename Placer::BinType & bin, in nest()
93 const NestConfig<Placer, Selector> &cfg = {}, in nest() argument
121 template<class Placer = NfpPlacer,
125 const typename Placer::BinType & bin, in nest()
[all …]
/dports/devel/libnest2d-ultimaker/libnest2d-4d6fb4d/include/libnest2d/
H A Dlibnest2d.hpp59 template<class Placer = NfpPlacer, class Selector = FirstFitSelection>
61 typename Placer::Config placer_config;
63 using Placement = typename Placer::Config;
67 NestConfig(const typename Placer::Config &cfg) : placer_config{cfg} {} in NestConfig()
69 NestConfig(const typename Placer::Config & pcfg, in NestConfig()
86 template<class Placer = NfpPlacer,
90 const typename Placer::BinType & bin, in nest()
92 const NestConfig<Placer, Selector> &cfg = {}, in nest() argument
120 template<class Placer = NfpPlacer,
124 const typename Placer::BinType & bin, in nest()
[all …]
/dports/security/fprintd/libfprint-fprintd-V_0_8_1/po/
H A Dda.po62 msgstr "Placer din finger på %s"
80 msgstr "Placer din venstre tommeltot på %s"
98 msgstr "Placer din venstre pegefinger på %s"
116 msgstr "Placer din venstre langfinger på %s"
134 msgstr "Placer din venstre ringfinger på %s"
170 msgstr "Placer din højre tommeltot på %s"
188 msgstr "Placer din højre pegefinger på %s"
206 msgstr "Placer din højre langfinger på %s"
224 msgstr "Placer din højre ringfinger på %s"
242 msgstr "Placer din højre lillefinger på %s"
[all …]
/dports/devel/libnest2d-ultimaker/libnest2d-4d6fb4d/include/libnest2d/selections/
H A Dfirstfit.hpp35 using Placer = PlacementStrategyLike<TPlacer>; in packItems() typedef
40 std::vector<Placer> placers; in packItems()
74 auto makeProgress = [this, &total](Placer& placer, size_t idx) { in packItems()
81 this->template remove_unpackable_items<Placer>(store_, bin, pconfig); in packItems()
/dports/cad/PrusaSlicer/PrusaSlicer-version_2.3.3/src/libnest2d/include/libnest2d/selections/
H A Dfirstfit.hpp35 using Placer = PlacementStrategyLike<TPlacer>; in packItems() typedef
40 std::vector<Placer> placers; in packItems()
74 auto makeProgress = [this, &total](Placer& placer, size_t bin_idx) { in packItems()
82 this->template remove_unpackable_items<Placer>(store_, bin, pconfig); in packItems()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgWrappers/deprecated-dotosg/osgParticle/
H A DIO_ModularEmitter.cpp34 …osgParticle::Placer *placer = static_cast<osgParticle::Placer *>(fr.readObjectOfType(osgDB::type_w… in ModularEmitter_readLocalData()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgWrappers/deprecated-dotosg/osgParticle/
H A DIO_ModularEmitter.cpp34 …osgParticle::Placer *placer = static_cast<osgParticle::Placer *>(fr.readObjectOfType(osgDB::type_w… in ModularEmitter_readLocalData()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/gui/widgets/
H A Dqmdiarea_p.h113 class Placer
120 virtual ~Placer() {} in ~Placer()
123 class MinOverlapPlacer : public Placer
151 QMdi::Placer *placer;
199 void place(QMdi::Placer *placer, QMdiSubWindow *child);
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/widgets/widgets/
H A Dqmdiarea_p.h113 class Placer
120 virtual ~Placer() {} in ~Placer()
123 class MinOverlapPlacer : public Placer
146 QMdi::Placer *placer;
194 void place(QMdi::Placer *placer, QMdiSubWindow *child);
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/widgets/widgets/
H A Dqmdiarea_p.h113 class Placer
120 virtual ~Placer() {} in ~Placer()
123 class MinOverlapPlacer : public Placer
146 QMdi::Placer *placer;
194 void place(QMdi::Placer *placer, QMdiSubWindow *child);
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/widgets/widgets/
H A Dqmdiarea_p.h113 class Placer
120 virtual ~Placer() {} in ~Placer()
123 class MinOverlapPlacer : public Placer
146 QMdi::Placer *placer;
194 void place(QMdi::Placer *placer, QMdiSubWindow *child);
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/widgets/widgets/
H A Dqmdiarea_p.h113 class Placer
120 virtual ~Placer() {} in ~Placer()
123 class MinOverlapPlacer : public Placer
146 QMdi::Placer *placer;
194 void place(QMdi::Placer *placer, QMdiSubWindow *child);
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/widgets/widgets/
H A Dqmdiarea_p.h113 class Placer
120 virtual ~Placer() {} in ~Placer()
123 class MinOverlapPlacer : public Placer
146 QMdi::Placer *placer;
194 void place(QMdi::Placer *placer, QMdiSubWindow *child);
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/widgets/widgets/
H A Dqmdiarea_p.h113 class Placer
120 virtual ~Placer() {} in ~Placer()
123 class MinOverlapPlacer : public Placer
146 QMdi::Placer *placer;
194 void place(QMdi::Placer *placer, QMdiSubWindow *child);

12345678910>>...34