Points
Points are dots that can be rendered at a location (x, y).
import { Mafs, Point, Coordinates } from "mafs"
function SimplePoint() {
return (
<Mafs>
<Coordinates.Cartesian />
<Point x={1} y={1} />
</Mafs>
)
}
Props
<Point ... />
Name | Description | Default |
---|---|---|
x | number | — |
y | number | — |
color | string | var(--mafs-fg) |
opacity | number | 1 |
svgCircleProps | SVGProps<SVGCircleElement> | {} |