Geomath - Conhecendo os Recursos

Explorando Pontos

Pontos são a unidade basica da Geometria Analítica, eles são os objetos que podem definir se algo existe ou não existe e muitos outros fatores.


In [9]:
from geomath.point import Point

In [10]:
A = Point(0,0)

In [11]:
B = Point(4,4)

In [12]:
A.distance(B)


Out[12]:
5.656854249492381

In [13]:
A.midpoint(B)


Out[13]:
Point(2.0, 2.0)

In [14]:
B.quadrant()


Out[14]:
1

Entendendo Linhas


In [15]:
from geomath.line import Line

In [17]:
Linha = Line()

In [18]:
Linha.create_via_equation("1x+2y+3=0")

In [19]:
Linha.equation()


Out[19]:
'1x+2y+3=0'

In [21]:
Linha.create(Point(0,0),Point(4,4))

In [22]:
Linha.equation()


Out[22]:
'-4.0x+4.0y+0=0'

Figuras


In [23]:
from geomath.figure import Figure

In [24]:
FiguraEstranha = Figure()

In [25]:
FiguraEstranha.add_points([Point(2,10),Point(0,4),Point(0,0),Point(10,5),Point(3,9)])

In [27]:
FiguraEstranha.area()


Out[27]:
47.5

In [28]:
FiguraEstranha.perimeter()


Out[28]:
30.981366518507354

In [ ]: