How to get compass Vector from grasshopper
See original GitHub issueFeature Request
Related to #512
I noticed there is no RhinoVector
wrapper. Is there a way to get vector input from GH interface and convert it to compas.geometry.Vector
I would like to do something like this:
vector = RhinoVector.from_geometry(geometry).to_compas()
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
How to get a compas Mesh from grasshopper #512 - GitHub
Describe the bug Maybe this is a simple question. In the old days, there is a function "mesh_from_guid" in the helpers.
Read more >North - Ladybug - Component for Grasshopper
Use this component to create a compass sign that indicates the direction of North in the Rhino scene.
Read more >Grasshopper Tutorial: Vectors - YouTube
In this tutorial, I cover the basic Vector components in Grasshopper 3d.
Read more >Why the "angle between vectors" component is always positive?
I have to know the angle between a lot of vectors, but some times this should be negative, I thought that this component...
Read more >Force Fields in Grasshopper - designcoding
For instance, a vector field in the plane can be visualized as a collection of arrows with a given magnitude and direction, each...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
you don’t need to use
v.data
, just cast it to a list before you pass it to the constructor ofrg.Vector3d
:@tetov Thanks for the PR I look forward to it.