FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ExampleCodesForMatPlotLib/ObjectShapes.py at main · Sarish002/ExampleCodesForMatPlotLib · GitHub
Sarish002
/
ExampleCodesForMatPlotLib
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ExampleCodesForMatPlotLib
/
ObjectShapes.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (46 loc) · 1.52 KB
Breadcrumbs
ExampleCodesForMatPlotLib
/
ObjectShapes.py
Copy path
File metadata and controls
51 lines (46 loc) · 1.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from
matplotlib
import
pyplot
as
plot
from
matplotlib
import
style
,
rc
from
matplotlib
.
patches
import
Rectangle
,
Polygon
,
RegularPolygon
,
Circle
,
Ellipse
import
numpy
as
npnum
fig
,
ax
=
plot
.
subplots
(
1
,
1
)
ax
.
axis
([
0
,
200
,
0
,
200
])
ax
.
axis
(
'off'
)
Recta
=
Rectangle
((
50
,
5
),
width
=
100
,
height
=
50
,
linewidth
=
5
,
fill
=
False
,
color
=
'k'
)
Circa
=
Circle
((
100
,
80
),
radius
=
25
,
color
=
'k'
,
fill
=
False
,
linewidth
=
5
,
angle
=
0.25
)
RegPol
=
RegularPolygon
((
100
,
120
),
numVertices
=
3
,
radius
=
20
,
color
=
'k'
,
fill
=
False
,
linewidth
=
5
)
nparray
=
npnum
.
array
( ((
150
,
55
), (
150
,
27.5
), (
199
,
75
), (
199
,
100
)))
anarray
=
npnum
.
array
( ((
50
,
55
), (
50
,
27.5
), (
1
,
75
), (
1
,
100
)) )
EmployerGon
=
Polygon
(
nparray
,
fill
=
False
,
color
=
'k'
,
linewidth
=
5
)
EmployerCame
=
Polygon
(
anarray
,
fill
=
False
,
color
=
'k'
,
linewidth
=
5
)
style
.
use
(
'ggplot'
)
rc
(
'font'
,
**
{
'family'
:
'Comic Sans MS'
})
plot
.
rcParams
[
'axes.facecolor'
]
=
'#FFFFFF'
ax
.
set_xlim
(
0
,
200
)
ax
.
set_ylim
(
0
,
200
)
ax
.
add_patch
(
Recta
)
ax
.
add_patch
(
Circa
)
ax
.
add_patch
(
RegPol
)
ax
.
add_patch
(
EmployerGon
)
ax
.
add_patch
(
EmployerCame
)
plot
.
show
()
Back
|
FazBrowse Home
|
New Git URL