Just the beginning scaffoldings
Getty Ritter
8 years ago
| 1 |
# Thermidor
|
| 2 |
|
| 3 |
This is an umbrella repo for all the Thermidor-related libraries, which I want to keep separate for clarity and reusability. Right now, we have:
|
| 4 |
|
| 5 |
* `therm_doc`: documentation about formats and high-level organization
|
| 6 |
* `therm_util`: basic reusable data types, all bundled together
|
| 7 |
* `therm_model`: types for 3D models and scene graphs
|
| 8 |
|
| 9 |
Maybe more eventually?
|
| 1 |
---
|
| 2 |
format: org
|
| 3 |
title: Themidor Model Format
|
| 4 |
...
|
| 5 |
#+TITLE: Thermidor ModelFormat
|
| 6 |
#+AUTHOR: getty
|
| 7 |
|
| 8 |
* Current state
|
| 9 |
|
| 10 |
|
| 11 |
|
| 12 |
* Next Steps & Concerns
|
| 13 |
|
| 14 |
** TODO Decide on magic numbers / signatures / &c
|
| 15 |
|
| 16 |
** TODO Determine how to represent animations
|
| 17 |
|
| 18 |
** TODO Split apart vector/uv rep?
|
| 1 |
[package]
|
| 2 |
name = "therm_model"
|
| 3 |
version = "0.1.0"
|
| 4 |
authors = ["Getty Ritter <gdritter@galois.com>"]
|
| 5 |
|
| 6 |
[dependencies]
|
| 1 |
#[cfg(test)]
|
| 2 |
mod tests {
|
| 3 |
#[test]
|
| 4 |
fn it_works() {
|
| 5 |
}
|
| 6 |
}
|
| 1 |
[package]
|
| 2 |
name = "therm_util"
|
| 3 |
version = "0.1.0"
|
| 4 |
authors = ["Getty Ritter <gdritter@galois.com>"]
|
| 5 |
|
| 6 |
[dependencies]
|
| 1 |
#[cfg(test)]
|
| 2 |
mod tests {
|
| 3 |
#[test]
|
| 4 |
fn it_works() {
|
| 5 |
}
|
| 6 |
}
|