Export sun path from Blender

I wonder if somebody knows how to export sun path visualized by Bonsai/Sun position add-on in Blender to CAD/Speckle?

Tagged:

Comments

  • Hmmh, in the best case Speckle brought in my Cameras (in deprecated V2 Connector), but there were some issues.

    AFAIR in V3 I did not get my Cameras in so far (?)
    I think that sun study (or any kind of animation) is no implemented feature (?) or something that is not yet even on their list and you should ask for it on their forum.
    I can create and render sun studies in Vectorworks, but that's internal, there isn't even any option to export that anywhere.

  • @Max said:
    I wonder if somebody knows how to export sun path visualized by Bonsai/Sun position add-on in Blender to CAD/Speckle?

    What do you mean exactly? The sun position add-on simply changes the location of a sun object in the scene - there's no path (as in revit). Normally you use it to set the scene up and render an image (sequence).

  • It also visualize the sun path but I do not know how to export this as a 3D CAD object.

  • If you're after code:

    import bpy
    import bonsai.tool as tool
    addon = tool.Blender.get_sun_position_addon()
    analemma_verts, analemma_edges = addon.sun_calc.calc_analemma(bpy.context.scene)
    
  • Thanks a lot? Worked perfectly. Do you know if the verts have a pattern, for example resolution (per time or sky angle)?

Sign In or Register to comment.