Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Almost can't imagine it but, but don't see any other expanation:
Explain this:
Point3dCollection snijpunten = new Point3dCollection();
bovenaanzicht.IntersectWith(hulplijn1, Intersect.OnBothOperands, snijpunten, IntPtr.Zero, IntPtr.Zero);
int aantalsnijpunten = snijpunten.Count;
if (aantalsnijpunten > 0)
{
foreach (Point3d snijpunt in snijpunten)
{
double debug = bovenaanzicht.GetDistAtPoint(snijpunt);
I get a 'eInvalidInput' at defining the 'debug double'.
I'm calculating pretty much intersections in my code and suddenly this happens, every time at same moment.
Was having a similar issue a few days ago, couldn't figure it out, so rewrote the whole code in some other way, now this same thing happens again...
Is there a way to solve this?
Solved! Go to Solution.