solstice

Compute collected power and efficiencies of a solar plant
git clone git://git.meso-star.com/solstice.git
Log | Files | Refs | README | LICENSE

commit ed18b4550c8b59dad12d8169523b3572f6f47b53
parent d92a64893a6815229c3e0871ee079a86a07cc3dc
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed,  1 Mar 2017 17:47:48 +0100

Add a comment to the dump routine

Diffstat:
Msrc/solstice_dump_obj.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/solstice_dump_obj.c b/src/solstice_dump_obj.c @@ -132,6 +132,9 @@ solstice_dump(struct solstice* solstice) struct solstice_node* node = darray_nodes_data_get(&solstice->roots)[i]; fprintf(solstice->output, "# %s\n", solstice_node_get_name(node)); + + /* TODO use a anim tree visitor that neither resolve the pivot + * transformations nor compute the node transforms */ res = sanim_node_visit_tree(&node->anim, dummy_dir, &ctx, dump_geometry); if(res != RES_OK) { fprintf(stderr, "Could not dump the solstice geometry.\n");