from sprites import orthocenter A = (100,100) B = (0,0) C = (200,0) G = orthocenter(A,B,C) # 返回垂心 print(G)