add external files

This commit is contained in:
Shunsuke Shibayama 2024-02-11 23:04:16 +09:00
parent 7823243dbe
commit 92aa3ea078
122 changed files with 1087 additions and 0 deletions

View file

@ -0,0 +1,3 @@
._axes = pyimport "./_axes"
.Axes! = ._axes.Axes!

View file

@ -0,0 +1,21 @@
.Axes!: ClassType
.Axes!.
scatter!: (
self: RefMut(.Axes!),
x: Num, # TODO: Float | ArrayLike
y: Num,
s := Num,
c := Iterable(Int),
vmin := Float,
vmax := Float,
) => NoneType
set!: (
self: RefMut(.Axes!),
xlabel := Str,
xlim := (Float, Float),
xticks := Iterable(Obj),
ylabel := Str,
ylim := (Float, Float),
yticks := Iterable(Obj),
title := Str
) => NoneType