Properties
Category
Uncategorized
Similar Topics
Statistics
Comments
2
Participants
2
Subscribers
2
Votes
1
Views
623
Share
Answered
need to know how to get the list of all points intersection between the upper part of the circles and the corresponding perpendicular lines.; only managed the botton set of points of intersection(l4.)
Any help or suggestion is much appreciated. thanks
Files:
list of points...
- GeoGebra
- Help
- Partners
-
Contact us
- Feedback & Questions
- This email address is being protected from spambots. You need JavaScript enabled to view it.
- +43 677 6137 2693
© 2023 International GeoGebra Institute
l4 = Sequence(Intersect(Element(l3, n), Element(l2, n), 2), n, 1, 8, 1) for upper
l4 = Sequence(Intersect(Element(l3, n), Element(l2, n), 1), n, 1, 8, 1) for bottom
l4 = Sequence(Intersect(Element(l3, n), Element(l2, n)), n, 1, 8, 1) default value for 3. parameter is 1 -> for bottom
l4 = Sequence({Intersect(Element(l3, n), Element(l2, n))}, n, 1, 8, 1) with {} -> for both as list (in the list)
----------------------------
Intersect( <Object>, <Object>, <Index of Intersection Point>) see manual
{Intersect(a,b)} see notes in manual
l4 = Sequence(Intersect(Element(l3, n), Element(l2, n), 2), n, 1, 8, 1) for upper
l4 = Sequence(Intersect(Element(l3, n), Element(l2, n), 1), n, 1, 8, 1) for bottom
l4 = Sequence(Intersect(Element(l3, n), Element(l2, n)), n, 1, 8, 1) default value for 3. parameter is 1 -> for bottom
l4 = Sequence({Intersect(Element(l3, n), Element(l2, n))}, n, 1, 8, 1) with {} -> for both as list (in the list)
----------------------------
Intersect( <Object>, <Object>, <Index of Intersection Point>) see manual
{Intersect(a,b)} see notes in manual
Comments have been locked on this page!