forked from flxzt/ink-stroke-modeler-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
justfile
22 lines (19 loc) · 793 Bytes
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# justfile for ink-stroke-modeler-rs crate
default:
just --list
docs-build:
pandoc docs/notations.typ -o docs/notations.html --mathml
pandoc docs/position_modeling.typ -o docs/position_modeling.html --mathml
pandoc docs/resampling.typ -o docs/resampling.html --mathml
pandoc docs/stroke_end.typ -o docs/stroke_end.html --mathml
pandoc docs/stylus_state_modeler.typ -o docs/stylus_state_modeler.html --mathml
pandoc docs/wobble.typ -o docs/wobble.html --mathml
cargo doc --open
cp docs/position_model.svg target/doc/ink_stroke_modeler_rs/position_model.svg
docs-remove-html:
rm docs/notations.html
rm docs/position_modeling.html
rm docs/resampling.html
rm docs/stroke_end.html
rm docs/stylus_state_modeler.html
rm docs/wobble.html