Skip to content

Commit

Permalink
Add UUV mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
janbruedigam committed Apr 14, 2023
1 parent d5c5ff7 commit 4f20926
Show file tree
Hide file tree
Showing 16 changed files with 932,787 additions and 18 deletions.
1 change: 1 addition & 0 deletions DojoEnvironments/src/mechanisms/include.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ include("snake/mechanism.jl")
include("sphere/mechanism.jl")
include("tippetop/mechanism.jl")
include("twister/mechanism.jl")
include("uuv/mechanism.jl")
include("walker/mechanism.jl")
include("youbot/mechanism.jl")
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# Aspose.3D Wavefront OBJ Exporter
# Copyright 2004-2023 Aspose Pty Ltd.
# File created: 04/13/2023 17:12:16


#
# object node
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# Aspose.3D Wavefront OBJ Exporter
# Copyright 2004-2023 Aspose Pty Ltd.
# File created: 04/13/2023 17:15:18


#
# object node
#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
# Aspose.3D Wavefront OBJ Exporter
# Copyright 2004-2023 Aspose Pty Ltd.
# File created: 04/13/2023 17:15:30


#
# object node
#
Expand Down
2 changes: 1 addition & 1 deletion DojoEnvironments/src/mechanisms/quadrotor/mechanism.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function get_quadrotor(;
n = 4
normals = fill(Z_AXIS,n)
friction_coefficients = fill(friction_coefficient,n)
contact_radii = fill(0.07,4) # smaller than rotor size to allow for pitching close to ground
contact_radii = fill(0.07,n) # smaller than rotor size to allow for pitching close to ground
contact_origins = [
[0.21; 0; 0.045],
[-0.21; 0; 0.045],
Expand Down
13 changes: 13 additions & 0 deletions DojoEnvironments/src/mechanisms/uuv/dependencies/mesh/material.lib
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
newmtl Material__211
Ka 0.2 0.2 0.2
Kd 0.752941 0 0
d 1
Tr 0
illum 2

newmtl Material__52
Ka 0.2 0.2 0.2
Kd 0.792157 0.819608 0.933333
d 1
Tr 0
illum 2
Loading

0 comments on commit 4f20926

Please sign in to comment.