Grasshopper

algorithmic modeling for Rhino

Dear grasshoppers.
Does anyone know how I get the "point from plane coordinates" in VB?
Thanks!
/Mårten

Views: 1465

Replies to This Discussion

Plane.PointAt()

--
David Rutten
david@mcneel.com
Seattle, WA
Thanks!

Hi guys!

 

Is it possible to do the opposite? I mean, get the relative U, V, W coordinates of a point related to a certain plane? Preferrable C#

Awesome, just got it!

 

private void RunScript(Plane pl, Point3d pt, ref object A)
  {
    Point3d pt2 = new Point3d();
    pl.RemapToPlaneSpace(pt, out pt2);
    A = pt2;
  }

RSS

About

Translate

Search

Videos

  • Add Videos
  • View All

© 2024   Created by Scott Davidson.   Powered by

Badges  |  Report an Issue  |  Terms of Service