agx-openplx 0.15.22__cp39-cp39-macosx_12_0_arm64.whl → 0.16.1__cp39-cp39-macosx_12_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
openplx/Urdf.py CHANGED
@@ -229,6 +229,7 @@ import openplx.Core
229
229
  import openplx.Math
230
230
  import openplx.Physics
231
231
  import openplx.Physics3D
232
+ import openplx.Visuals
232
233
  class Urdf_PackagePath_Vector(object):
233
234
  r"""Proxy of C++ std::vector< std::shared_ptr< openplx::Urdf::PackagePath > > class."""
234
235
 
@@ -549,38 +550,38 @@ class Urdf_PackagePath_Vector(object):
549
550
  # Register Urdf_PackagePath_Vector in _UrdfSwig:
550
551
  _UrdfSwig.Urdf_PackagePath_Vector_swigregister(Urdf_PackagePath_Vector)
551
552
 
552
- class PackagePath(openplx.Core.Object):
553
+ class Urdf_PackagePath(openplx.Core.Object):
553
554
  r"""Proxy of C++ openplx::Urdf::PackagePath class."""
554
555
 
555
556
  thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
556
557
  __repr__ = _swig_repr
557
558
 
558
559
  def __init__(self):
559
- r"""__init__(PackagePath self) -> PackagePath"""
560
- _UrdfSwig.PackagePath_swiginit(self, _UrdfSwig.new_PackagePath())
560
+ r"""__init__(Urdf_PackagePath self) -> Urdf_PackagePath"""
561
+ _UrdfSwig.Urdf_PackagePath_swiginit(self, _UrdfSwig.new_Urdf_PackagePath())
561
562
 
562
563
  def name(self):
563
- r"""name(PackagePath self) -> std::string"""
564
- return _UrdfSwig.PackagePath_name(self)
564
+ r"""name(Urdf_PackagePath self) -> std::string"""
565
+ return _UrdfSwig.Urdf_PackagePath_name(self)
565
566
 
566
567
  def path(self):
567
- r"""path(PackagePath self) -> std::string"""
568
- return _UrdfSwig.PackagePath_path(self)
568
+ r"""path(Urdf_PackagePath self) -> std::string"""
569
+ return _UrdfSwig.Urdf_PackagePath_path(self)
569
570
 
570
571
  def on_init(self, context):
571
572
  r"""
572
- on_init(PackagePath self, openplx::RuntimeContext const & context)
573
+ on_init(Urdf_PackagePath self, openplx::RuntimeContext const & context)
573
574
 
574
575
  Parameters
575
576
  ----------
576
577
  context: openplx::RuntimeContext const &
577
578
 
578
579
  """
579
- return _UrdfSwig.PackagePath_on_init(self, context)
580
+ return _UrdfSwig.Urdf_PackagePath_on_init(self, context)
580
581
 
581
582
  def setDynamic(self, key, value):
582
583
  r"""
583
- setDynamic(PackagePath self, std::string const & key, Any value)
584
+ setDynamic(Urdf_PackagePath self, std::string const & key, Any value)
584
585
 
585
586
  Parameters
586
587
  ----------
@@ -588,22 +589,22 @@ class PackagePath(openplx.Core.Object):
588
589
  value: openplx::Core::Any &&
589
590
 
590
591
  """
591
- return _UrdfSwig.PackagePath_setDynamic(self, key, value)
592
+ return _UrdfSwig.Urdf_PackagePath_setDynamic(self, key, value)
592
593
 
593
594
  def getDynamic(self, key):
594
595
  r"""
595
- getDynamic(PackagePath self, std::string const & key) -> Any
596
+ getDynamic(Urdf_PackagePath self, std::string const & key) -> Any
596
597
 
597
598
  Parameters
598
599
  ----------
599
600
  key: std::string const &
600
601
 
601
602
  """
602
- return _UrdfSwig.PackagePath_getDynamic(self, key)
603
+ return _UrdfSwig.Urdf_PackagePath_getDynamic(self, key)
603
604
 
604
605
  def callDynamic(self, key, args):
605
606
  r"""
606
- callDynamic(PackagePath self, std::string const & key, AnyVector args) -> Any
607
+ callDynamic(Urdf_PackagePath self, std::string const & key, AnyVector args) -> Any
607
608
 
608
609
  Parameters
609
610
  ----------
@@ -611,44 +612,44 @@ class PackagePath(openplx.Core.Object):
611
612
  args: std::vector< openplx::Core::Any,std::allocator< openplx::Core::Any > > const &
612
613
 
613
614
  """
614
- return _UrdfSwig.PackagePath_callDynamic(self, key, args)
615
+ return _UrdfSwig.Urdf_PackagePath_callDynamic(self, key, args)
615
616
 
616
617
  def extractObjectFieldsTo(self, output):
617
618
  r"""
618
- extractObjectFieldsTo(PackagePath self, ObjectVector output)
619
+ extractObjectFieldsTo(Urdf_PackagePath self, ObjectVector output)
619
620
 
620
621
  Parameters
621
622
  ----------
622
623
  output: std::vector< std::shared_ptr< openplx::Core::Object >,std::allocator< std::shared_ptr< openplx::Core::Object > > > &
623
624
 
624
625
  """
625
- return _UrdfSwig.PackagePath_extractObjectFieldsTo(self, output)
626
+ return _UrdfSwig.Urdf_PackagePath_extractObjectFieldsTo(self, output)
626
627
 
627
628
  def extractEntriesTo(self, output):
628
629
  r"""
629
- extractEntriesTo(PackagePath self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
630
+ extractEntriesTo(Urdf_PackagePath self, std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > & output)
630
631
 
631
632
  Parameters
632
633
  ----------
633
634
  output: std::vector< std::pair< std::string,openplx::Core::Any >,std::allocator< std::pair< std::string,openplx::Core::Any > > > &
634
635
 
635
636
  """
636
- return _UrdfSwig.PackagePath_extractEntriesTo(self, output)
637
+ return _UrdfSwig.Urdf_PackagePath_extractEntriesTo(self, output)
637
638
 
638
639
  def triggerOnInit(self, context):
639
640
  r"""
640
- triggerOnInit(PackagePath self, openplx::RuntimeContext const & context)
641
+ triggerOnInit(Urdf_PackagePath self, openplx::RuntimeContext const & context)
641
642
 
642
643
  Parameters
643
644
  ----------
644
645
  context: openplx::RuntimeContext const &
645
646
 
646
647
  """
647
- return _UrdfSwig.PackagePath_triggerOnInit(self, context)
648
- __swig_destroy__ = _UrdfSwig.delete_PackagePath
648
+ return _UrdfSwig.Urdf_PackagePath_triggerOnInit(self, context)
649
+ __swig_destroy__ = _UrdfSwig.delete_Urdf_PackagePath
649
650
 
650
- # Register PackagePath in _UrdfSwig:
651
- _UrdfSwig.PackagePath_swigregister(PackagePath)
651
+ # Register Urdf_PackagePath in _UrdfSwig:
652
+ _UrdfSwig.Urdf_PackagePath_swigregister(Urdf_PackagePath)
652
653
 
653
654
 
654
655