Skip to content
This repository was archived by the owner on Jun 6, 2018. It is now read-only.

Commit 9fa9688

Browse files
committed
Merge pull request #46 from excaliburHisSheath/mesh-compilation
Improved Mesh Compilation
2 parents 0887071 + fac070c commit 9fa9688

19 files changed

+1044
-528
lines changed

.clog.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[clog]
2+
repository = "https://github.com/excaliburHisSheath/gunship-rs"
3+
outfile = "CHANGELOG.md"
4+
5+
[sections]
6+
"Features" = ["feature", "feat"]

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<a name="v0.0.3"></a>
2+
### v0.0.3 (2015-12-07)
3+
4+
5+
#### Breaking Changes
6+
7+
* **parse-collada:** rename PrimitiveType to PrimitiveElements ([f1cd6b4a](https://github.com/excaliburHisSheath/gunship-rs/commit/f1cd6b4af8b78ce2055da7e7e81f793fdc8c1306), breaks [#](https://github.com/excaliburHisSheath/gunship-rs/issues/))
8+
* **polygon::MeshBuilder:** remove `Mesh::from_raw_data()` and replace it's functionality with `MeshBuilder`. ([907bf23c](https://github.com/excaliburHisSheath/gunship-rs/commit/907bf23cb8fca9c87c8d8aeff69a2646212ac8be))
9+
10+
#### Features
11+
12+
* **parse-collada:**
13+
* add implementation for primitive elements ([953ac4bd](https://github.com/excaliburHisSheath/gunship-rs/commit/953ac4bdc5583fbf0551e799d1f6f947dc792ecf))
14+
* better support parsing normal data ([6edf9162](https://github.com/excaliburHisSheath/gunship-rs/commit/6edf916283452a8d0f39a692e4810eb03dd66df2))
15+
* **polygon-math::Vector2:**
16+
* add Vector2::as_ref() ([d7eda56c](https://github.com/excaliburHisSheath/gunship-rs/commit/d7eda56c15fa560e081f2138d8c3b576e26e43ff))
17+
* add Vector2 type and other utilities ([137f3c36](https://github.com/excaliburHisSheath/gunship-rs/commit/137f3c36299edb5b62ab8bd053e09d786a9c22ea))
18+
* **polygon::MeshBuilder:**
19+
* support texcoord vertex attributes ([03e875c7](https://github.com/excaliburHisSheath/gunship-rs/commit/03e875c74425becfe4bef95759d33a0a35e2fda0))
20+
* add mesh builder system ([907bf23c](https://github.com/excaliburHisSheath/gunship-rs/commit/907bf23cb8fca9c87c8d8aeff69a2646212ac8be))
21+
* **resource::collada:**
22+
* process texcoord vertex data ([a87e2c96](https://github.com/excaliburHisSheath/gunship-rs/commit/a87e2c962d2de2f23162e061295603f36e25a365))
23+
* more robust collada mesh processing ([bb075efa](https://github.com/excaliburHisSheath/gunship-rs/commit/bb075efa155132d8a864fa0f1042a8714a744dcd))
24+
25+
#### Bug Fixes
26+
27+
* **parse-collada:** rename PrimitiveType to PrimitiveElements ([f1cd6b4a](https://github.com/excaliburHisSheath/gunship-rs/commit/f1cd6b4af8b78ce2055da7e7e81f793fdc8c1306), breaks [#](https://github.com/excaliburHisSheath/gunship-rs/issues/))

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "gunship"
4-
version = "0.0.2"
4+
version = "0.0.3"
55
authors = ["David LeGare <[email protected]>"]
66

77
[lib]

lib/parse_collada/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "parse_collada"
4-
version = "0.2.0"
4+
version = "0.2.1"
55
authors = ["David LeGare <[email protected]>"]
66

77
[dependencies.parse_xml]

0 commit comments

Comments
 (0)