diff --git a/README.md b/README.md index b9f7f248..f100aa2f 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,13 @@ The purpose of this application is to learn and share how to draw using OpenGL l * Collada format (DAE): https://en.wikipedia.org/wiki/COLLADA -News (07/09/2018) +News (11/09/2018) ================= +* New: Reduced app size to only 1 Mbyte * New: Skeleton Animation * New: File chooser to load files from any where +* New: Load models from app repository * Fix: Collada Animator Performance improved * Fix: Refactoring * Fix: Several bugs fixed @@ -156,6 +158,9 @@ ChangeLog (f) fixed, (i) improved, (n) new feature +- 2.2.0 (11/09/2018) + - (n) Load models from app repository + - (i) Reduced app size to only 1 Megabyte - 2.1.0 (07/09/2018) - (n) Skeleton Animation - (n) File chooser to load files from any where diff --git a/app/src/main/assets/models/ToyPlane.bmp b/app/src/main/assets/models/ToyPlane.bmp new file mode 100644 index 00000000..feda3852 Binary files /dev/null and b/app/src/main/assets/models/ToyPlane.bmp differ diff --git a/app/src/main/assets/models/triangle.obj b/app/src/main/assets/models/triangle.obj new file mode 100644 index 00000000..21ab9f5a --- /dev/null +++ b/app/src/main/assets/models/triangle.obj @@ -0,0 +1,20 @@ +# triangle + +# +# (3)------(2) +# | / +# | / +# | / +# | / +# (1) + +v -0.5 -0.25 0 +v 0.5 -0.25 0 +v 0.0 0.5 0 + +v -0.5 0.25 0 +v 0.5 0.25 0 +v 0.0 -0.5 0 + +f 1 2 3 +f 4 5 6 \ No newline at end of file diff --git a/app/src/main/assets/models/wolf.stl b/app/src/main/assets/models/wolf.stl new file mode 100644 index 00000000..08d9a7a6 Binary files /dev/null and b/app/src/main/assets/models/wolf.stl differ