1 Star 0 Fork 0

AUST_RM_HongLie/RoboHero-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
robot_component.py 755 Bytes
一键复制 编辑 原始数据 按行查看 历史
from entity_class import *
class Pos(Entity):
h_Pos_x:handle
h_Pos_y:handle
h_Pos_z:handle
h_Pos_yaw:handle
def __init__(self,*setvalue) -> None:
self.h_Pos_x=handle(vtype=float)
self.h_Pos_y=handle(vtype=float)
self.h_Pos_z=handle(vtype=float)
self.h_Pos_yaw=handle(vtype=float)
#self.h_Pos_x,self.h_Pos_y,self.h_Pos_z,self.h_Pos_yaw=handle.Empty(4)
super().__init__(*setvalue)
class YunTai(Entity):
h_YunTai_yaw:handle
h_YunTai_pitch:handle
def __init__(self,*setvalue) -> None:
self.h_YunTai_yaw=handle(vtype=float)
self.h_YunTai_pitch=handle(vtype=float)
#self.h_YunTai_yaw,self.h_YunTai_pitch=handle.Empty(2)
super().__init__(*setvalue)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/aust_-rm_-hong-lie/RoboHero-server.git
git@gitee.com:aust_-rm_-hong-lie/RoboHero-server.git
aust_-rm_-hong-lie
RoboHero-server
RoboHero-server
main

搜索帮助