Besoin de GÉNIES en PYTHON
Cailloui
2021-11-19 08:38:08
Le 19 novembre 2021 à 08:37:14 :
https://image.noelshack.com/fichiers/2021/46/5/1637307431-image.png
le calcgraph c'est quoi ??
killwwma
2021-11-19 08:38:52
Le 19 novembre 2021 à 08:38:08 :
Le 19 novembre 2021 à 08:37:14 :
https://image.noelshack.com/fichiers/2021/46/5/1637307431-image.png
le calcgraph c'est quoi ??
Ben c'est une class ah oué on part de loin
Rattatali10
2021-11-19 08:39:22
Pas certain de la question mais :
@dataclass
class Point2D:
x: float
y: float
def distance(self, p: Point2D) -> float:
return math.sqrt((self.x-p.x)**2 + (self.y-p.y)**2)
@dataclass
class Segment2D:
a: Point2D
b: Point2D
def len(self):
return a.distance(b)
?
Cailloui
2021-11-19 08:40:05
Le 19 novembre 2021 à 08:38:52 :
Le 19 novembre 2021 à 08:38:08 :
Le 19 novembre 2021 à 08:37:14 :
https://image.noelshack.com/fichiers/2021/46/5/1637307431-image.png
le calcgraph c'est quoi ??
Ben c'est une class ah oué on part de loin
mais dans l'exo, j'ai déjà fais la class qui est "class segment" et dans cette class, je dois créer la méthode longueur
Cailloui
2021-11-19 08:41:09
Le 19 novembre 2021 à 08:39:22 :
Pas certain de la question mais :
@dataclass
class Point2D:
x: float
y: float
def distance(self, p: Point2D) -> float:
return math.sqrt((self.x-p.x)**2 + (self.y-p.y)**2)
@dataclass
class Segment2D:
a: Point2D
b: Point2D
def len(self):
return a.distance(b)
?
ah peut-être mais je comprends pas pk on utilise pythagore ??? pythagore c pas quand on est dans le cas d'un triangle rectangle ?
killwwma
2021-11-19 08:44:23
Le 19 novembre 2021 à 08:41:09 :
Le 19 novembre 2021 à 08:39:22 :
Pas certain de la question mais :
@dataclass
class Point2D:
x: float
y: float
def distance(self, p: Point2D) -> float:
return math.sqrt((self.x-p.x)**2 + (self.y-p.y)**2)
@dataclass
class Segment2D:
a: Point2D
b: Point2D
def len(self):
return a.distance(b)
?
ah peut-être mais je comprends pas pk on utilise pythagore ??? pythagore c pas quand on est dans le cas d'un triangle rectangle ?
go artisanat laisse tomber l'école khey y a 0 honte a devenir fromager ou boulanger
Cailloui
2021-11-19 08:45:00
Le 19 novembre 2021 à 08:44:23 :
Le 19 novembre 2021 à 08:41:09 :
Le 19 novembre 2021 à 08:39:22 :
Pas certain de la question mais :
@dataclass
class Point2D:
x: float
y: float
def distance(self, p: Point2D) -> float:
return math.sqrt((self.x-p.x)**2 + (self.y-p.y)**2)
@dataclass
class Segment2D:
a: Point2D
b: Point2D
def len(self):
return a.distance(b)
?
ah peut-être mais je comprends pas pk on utilise pythagore ??? pythagore c pas quand on est dans le cas d'un triangle rectangle ?
go artisanat laisse tomber l'école khey y a 0 honte a devenir fromager ou boulanger
bah explique moi stp
Rattatali10
2021-11-19 08:45:01
Le 19 novembre 2021 à 08:41:09 :
Le 19 novembre 2021 à 08:39:22 :
Pas certain de la question mais :
@dataclass
class Point2D:
x: float
y: float
def distance(self, p: Point2D) -> float:
return math.sqrt((self.x-p.x)**2 + (self.y-p.y)**2)
@dataclass
class Segment2D:
a: Point2D
b: Point2D
def len(self):
return a.distance(b)
?
ah peut-être mais je comprends pas pk on utilise pythagore ??? pythagore c pas quand on est dans le cas d'un triangle rectangle ?
Voilà pourquoi on utilise Pythagore :
https://upload.wikimedia.org/wikipedia/commons/5/55/Euclidean_distance_2d.svg
diguedigue
2021-11-19 08:46:11
Le 19 novembre 2021 à 08:41:09 :
Le 19 novembre 2021 à 08:39:22 :
Pas certain de la question mais :
@dataclass
class Point2D:
x: float
y: float
def distance(self, p: Point2D) -> float:
return math.sqrt((self.x-p.x)**2 + (self.y-p.y)**2)
@dataclass
class Segment2D:
a: Point2D
b: Point2D
def len(self):
return a.distance(b)
?
ah peut-être mais je comprends pas pk on utilise pythagore ??? pythagore c pas quand on est dans le cas d'un triangle rectangle ?
Pythagore mesure la longueur de l'hypoténuse dans un triangle rectangle, certes. Mais du coup pour calculer la longueur d'un segment quelconque, on peut se servir de Pythagore :
On crée un triangle rectangle dont l'hypoténuse est le segment de longueur inconnue, et dont les deux autres côtés sont verticaux/horizontaux (et donc dont la longueur est évidente à connaître.)
AirbusA320Neo
2021-11-19 08:46:13
[08:33:40] <Cailloui>
Le 19 novembre 2021 à 08:31:33 :
Quelle distance déjà ?
Dans mon exo, j'ai 4 points
A = (2,3)
B = (-8,4)
C = (-1,0)
D = (5,6)
on est dans un repère orthonormé
Distance euclidienne, de Manhattan,...
Edit : ah mais t'es en terminale
Edit2 : attends tu sais pas utiliser Pythagore ?
backbreakers1
2021-11-19 13:42:07
Pythagore ça te dit quelque chose ?
Golem2Fer
2021-11-20 10:58:56
Le 19 novembre 2021 à 08:41:09 Cailloui a écrit :
Le 19 novembre 2021 à 08:39:22 :
Pas certain de la question mais :
@dataclass
class Point2D:
x: float
y: float
def distance(self, p: Point2D) -> float:
return math.sqrt((self.x-p.x)**2 + (self.y-p.y)**2)
@dataclass
class Segment2D:
a: Point2D
b: Point2D
def len(self):
return a.distance(b)
?
ah peut-être mais je comprends pas pk on utilise pythagore ??? pythagore c pas quand on est dans le cas d'un triangle rectangle ?
y a des baffes qui se perdent