Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tools/wpical/generate_mrcal.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def main(argv):

args.output_directory.mkdir(parents=True, exist_ok=True)
result = subprocess.check_output(
f"{dirname}/src/main/native/thirdparty/mrcal/src/minimath/minimath_generate.pl"
"./src/main/native/thirdparty/mrcal/src/minimath/minimath_generate.pl",
cwd=dirname,
)
(args.output_directory / "minimath_generated.h").write_text(
str(result, encoding="UTF8")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// THIS IS AUTO-GENERATED BY /home/runner/work/allwpilib/allwpilib/tools/wpical/src/main/native/thirdparty/mrcal/src/minimath/minimath_generate.pl. DO NOT EDIT BY HAND
// THIS IS AUTO-GENERATED BY ./src/main/native/thirdparty/mrcal/src/minimath/minimath_generate.pl. DO NOT EDIT BY HAND

// This contains dot products, norms, basic vector arithmetic and multiplication

Expand Down
Loading