Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
82 commits
Select commit Hold shift + click to select a range
f788807
Uncommented mjlib.mj_fullM line 173
Jul 16, 2016
e4343bd
Added a function to get full inertia matrix
Jul 16, 2016
4fb9f8b
Update mjcore.py
Jul 16, 2016
ea46395
Update mjcore.py
Jul 16, 2016
04a8c76
Update mjcore.py
Jul 16, 2016
c4e97c0
Update mjcore.py
Jul 16, 2016
89d2980
Update mjcore.py
Jul 16, 2016
7b2bc15
Update mjcore.py
Jul 17, 2016
14b64dd
Update mjcore.py
Jul 17, 2016
6d29707
Update mjcore.py
Jul 17, 2016
3f64d11
Update mjcore.py
Jul 17, 2016
750f932
Update mjcore.py
Jul 17, 2016
b628aa1
Update mjcore.py
Jul 17, 2016
c4cd3e2
Update mjcore.py
Jul 17, 2016
a0ff5ae
Update mjcore.py
Jul 17, 2016
f43491d
Update mjcore.py
Jul 17, 2016
31ca6fe
Update mjcore.py
Jul 17, 2016
671d592
Update mjcore.py
Jul 17, 2016
d68c201
Update mjcore.py
Jul 17, 2016
d73bc8f
Update mjcore.py
Jul 17, 2016
55b06e6
Update mjcore.py
Jul 17, 2016
230e56d
Update mjcore.py
Jul 17, 2016
dec18a8
Update mjcore.py
Jul 17, 2016
1f2d3db
Update mjcore.py
Jul 17, 2016
c6f8db4
Update mjcore.py
Jul 17, 2016
3201318
Update mjcore.py
Jul 17, 2016
b145bad
Update mjcore.py
Jul 17, 2016
d5c87ad
Update mjcore.py
Jul 17, 2016
d3b8d60
Update mjcore.py
Jul 17, 2016
a013f24
Update mjcore.py
Jul 17, 2016
dd228b1
Update mjcore.py
Jul 17, 2016
30bd78f
Update mjcore.py
Jul 17, 2016
4789b5c
Update mjcore.py
Jul 17, 2016
419241a
Update mjcore.py
Jul 17, 2016
8524df9
Update mjcore.py
Jul 17, 2016
d21ce23
Update mjcore.py
Jul 17, 2016
56737b3
Update mjcore.py
Jul 17, 2016
ec47155
Update mjcore.py
Jul 17, 2016
3865738
Update mjcore.py
Jul 17, 2016
19ef3f8
Update mjcore.py
Jul 17, 2016
0add068
Update mjcore.py
Jul 17, 2016
a05beea
Update mjcore.py
Jul 17, 2016
f985599
Update mjcore.py
Jul 17, 2016
5074f67
Update mjcore.py
Jul 17, 2016
d41cb8c
Update mjcore.py
Jul 17, 2016
6a85dc4
Update mjcore.py
Jul 17, 2016
a44fd36
Update mjcore.py
Jul 17, 2016
fcd97cd
Update mjcore.py
Jul 17, 2016
da47d41
Update mjcore.py
Jul 17, 2016
99b2ceb
Update mjcore.py
Jul 17, 2016
6830609
Update mjcore.py
Jul 17, 2016
6f2aabb
Update mjcore.py
Jul 17, 2016
2fdecc4
Update mjcore.py
Jul 17, 2016
7475448
Update mjcore.py
Jul 17, 2016
e927b76
Update mjcore.py
Jul 17, 2016
e029e5c
Update mjlib.py
Jul 18, 2016
8f11259
Update mjcore.py
Jul 18, 2016
96f2924
added wrapper for the jacobian
Jul 27, 2016
271e0dd
added wrapper library
Jul 27, 2016
0ac2a74
added readme file
Jul 27, 2016
cf26e96
added readme file
Jul 27, 2016
293ee0f
Delete .rtf
Jul 27, 2016
31688d2
added readme file
Jul 27, 2016
629222b
Update Readme.txt
Jul 27, 2016
efc7de0
changed few files
Jul 30, 2016
0404317
updated code
Jul 30, 2016
fc5b191
bug in wrapper
Aug 17, 2016
89ad0e3
added new wrappers for jacobians
Sep 19, 2016
852c0d7
added few changes
Sep 25, 2016
a03c623
corrected bug
Sep 25, 2016
4aae5a0
added mj_applyFT wrapper
Sep 26, 2016
9b261a8
added one more wrapper
Oct 3, 2016
063d99e
few changes
Oct 16, 2016
30a064b
examples added
Dec 27, 2016
fb3b938
cleaned the code
Dec 27, 2016
f44ef74
new branch created mujoco_py_dev
Jan 6, 2017
e58b5a0
example modified
Jan 6, 2017
ecf6096
cleaning code
Jan 6, 2017
a8fd801
changes to magic forces
Jan 19, 2017
4bf511b
trying to modify mjviewer
Jan 29, 2017
8870e63
cleaned codes
Feb 7, 2017
556f857
Merge branch 'master' into master
tlbtlbtlb Feb 8, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update mjcore.py
  • Loading branch information
mjm522 authored Jul 16, 2016
commit 04a8c76d9684711597b46fb5727b10f452c522a2
2 changes: 1 addition & 1 deletion mujoco_py/mjcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def forward(self):
self._body_comvels = None

def findFullM(self):
mjlib.mj_fullM(self.ptr, self.fullM, self.data_ptr->qM)
mjlib.mj_fullM(self.ptr, self.fullM, self.data_ptr.qM)

@property
def body_comvels(self):
Expand Down