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
Create, edit, and import your Python scripts
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