Post Reply 
geometry app question...
10-15-2017, 07:06 AM (This post was last modified: 10-15-2017 07:09 AM by Didier Lachieze.)
Post: #4
RE: geometry app question...
Starting from your 3 lines you can then define the triangle vertices and draw the circle :
GA:= line(y = (2*x+5));
GB:= line(y = (-2*x-4));
GC:= line(y = (-7*x+5));
GD:= single_inter(GA,GB);
GE:= single_inter(GB,GC);
GG:= single_inter(GA,GC);
GH:= incircle(GD,GE,GG);

If you have just 3 points GA,GB,GC you can draw the triangle with triangle(GA,GB,GC)
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
geometry app question... - webmasterpdx - 10-15-2017, 05:34 AM
RE: geometry app question... - Arno K - 10-15-2017, 06:06 AM
RE: geometry app question... - Didier Lachieze - 10-15-2017 07:06 AM
RE: geometry app question... - Brad Barton - 10-16-2017, 02:07 PM
RE: geometry app question... - Arno K - 10-16-2017, 08:25 PM
RE: geometry app question... - Brad Barton - 10-16-2017, 08:28 PM



User(s) browsing this thread: 1 Guest(s)