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.
- {agx_openplx-0.15.22.dist-info → agx_openplx-0.16.1.dist-info}/METADATA +2 -2
- agx_openplx-0.16.1.dist-info/RECORD +41 -0
- openplx/DriveTrain.py +3318 -1690
- openplx/Math.py +528 -528
- openplx/Physics.py +3368 -2098
- openplx/Physics1D.py +272 -272
- openplx/Physics3D.py +2308 -2308
- openplx/Robotics.py +882 -882
- openplx/Simulation.py +46 -46
- openplx/Terrain.py +182 -182
- openplx/Urdf.py +25 -24
- openplx/Vehicles.py +436 -436
- openplx/Visuals.py +188 -188
- openplx/_AgxOpenPlxPyApi.cpython-39-darwin.so +0 -0
- openplx/_CorePythonSwig.cpython-39-darwin.so +0 -0
- openplx/_DriveTrainSwig.cpython-39-darwin.so +0 -0
- openplx/_MathSwig.cpython-39-darwin.so +0 -0
- openplx/_Physics1DSwig.cpython-39-darwin.so +0 -0
- openplx/_Physics3DSwig.cpython-39-darwin.so +0 -0
- openplx/_PhysicsSwig.cpython-39-darwin.so +0 -0
- openplx/_RoboticsSwig.cpython-39-darwin.so +0 -0
- openplx/_SimulationSwig.cpython-39-darwin.so +0 -0
- openplx/_TerrainSwig.cpython-39-darwin.so +0 -0
- openplx/_UrdfSwig.cpython-39-darwin.so +0 -0
- openplx/_VehiclesSwig.cpython-39-darwin.so +0 -0
- openplx/_VisualsSwig.cpython-39-darwin.so +0 -0
- openplx/__init__.py +1 -1
- openplx/api.py +23 -1
- openplx/migrations.py +12 -0
- openplx/openplx_application.py +11 -1
- openplx/openplx_validate.py +8 -1
- agx_openplx-0.15.22.dist-info/RECORD +0 -41
- {agx_openplx-0.15.22.dist-info → agx_openplx-0.16.1.dist-info}/WHEEL +0 -0
- {agx_openplx-0.15.22.dist-info → agx_openplx-0.16.1.dist-info}/entry_points.txt +0 -0
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
|
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__(
|
560
|
-
_UrdfSwig.
|
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(
|
564
|
-
return _UrdfSwig.
|
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(
|
568
|
-
return _UrdfSwig.
|
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(
|
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.
|
580
|
+
return _UrdfSwig.Urdf_PackagePath_on_init(self, context)
|
580
581
|
|
581
582
|
def setDynamic(self, key, value):
|
582
583
|
r"""
|
583
|
-
setDynamic(
|
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.
|
592
|
+
return _UrdfSwig.Urdf_PackagePath_setDynamic(self, key, value)
|
592
593
|
|
593
594
|
def getDynamic(self, key):
|
594
595
|
r"""
|
595
|
-
getDynamic(
|
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.
|
603
|
+
return _UrdfSwig.Urdf_PackagePath_getDynamic(self, key)
|
603
604
|
|
604
605
|
def callDynamic(self, key, args):
|
605
606
|
r"""
|
606
|
-
callDynamic(
|
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.
|
615
|
+
return _UrdfSwig.Urdf_PackagePath_callDynamic(self, key, args)
|
615
616
|
|
616
617
|
def extractObjectFieldsTo(self, output):
|
617
618
|
r"""
|
618
|
-
extractObjectFieldsTo(
|
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.
|
626
|
+
return _UrdfSwig.Urdf_PackagePath_extractObjectFieldsTo(self, output)
|
626
627
|
|
627
628
|
def extractEntriesTo(self, output):
|
628
629
|
r"""
|
629
|
-
extractEntriesTo(
|
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.
|
637
|
+
return _UrdfSwig.Urdf_PackagePath_extractEntriesTo(self, output)
|
637
638
|
|
638
639
|
def triggerOnInit(self, context):
|
639
640
|
r"""
|
640
|
-
triggerOnInit(
|
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.
|
648
|
-
__swig_destroy__ = _UrdfSwig.
|
648
|
+
return _UrdfSwig.Urdf_PackagePath_triggerOnInit(self, context)
|
649
|
+
__swig_destroy__ = _UrdfSwig.delete_Urdf_PackagePath
|
649
650
|
|
650
|
-
# Register
|
651
|
-
_UrdfSwig.
|
651
|
+
# Register Urdf_PackagePath in _UrdfSwig:
|
652
|
+
_UrdfSwig.Urdf_PackagePath_swigregister(Urdf_PackagePath)
|
652
653
|
|
653
654
|
|
654
655
|
|