Message 1 of 3
Point on Sheet => Point on View
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello
For a given sheet coordinate (location on sheet), say XYZ pointOnSheet, i want to know coinciding Model coordinate, say XYZ pointOnView.Viewport.
I tested the Transform from the view and transform the point but it does not work.
BoundingBoxXYZ bbox = viewSection.CropBox; Transform transform = bbox.Transform; XYZ pointOnViewSheet = new XYZ(0, 0, 0); XYZ pointOnView= transform.OfPoint(pointOnViewSheet );