Skip to content

Commit b8ed6cd

Browse files
committed
Fix the problem of pymycobot/tools_coords.py、elephantrobot.py missing numpy library error
1 parent 7510e90 commit b8ed6cd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

pymycobot/elephantrobot.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
import math
1010
from multiprocessing import Lock
1111
import logging
12+
13+
import numpy as np
14+
1215
from pymycobot.log import setup_logging
1316
from pymycobot.tool_coords import *
1417
from pymycobot.pro630common import Axis, Joint, DI, DO, AI, AO

pymycobot/tool_coords.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# coding=utf-8
2+
import numpy as np
23

34

45
def CvtRotationMatrixToEulerAngle(pdtRotationMatrix):

0 commit comments

Comments
 (0)