vecteur.py

Created by francoise-cavanne

Created on February 01, 2021

230 Bytes

coordonnées de vecteur deux points


from math import *
def vecteur(xA,yA,xB,yB):
    xAB=xB-xA
    yAB=yB-yA
    return xAB,yAB
    
def longueurAB(xA,yA,xB,yB):
    distcarre=(xB-xA)**2+(yB-yA)**2
    dist=sqrt(distcarre)
    return distcarre,dist