Skip to content

Commit

Permalink
updated last of docs
Browse files Browse the repository at this point in the history
  • Loading branch information
otmanon committed Oct 31, 2023
1 parent c1edcfd commit 5a5827e
Show file tree
Hide file tree
Showing 93 changed files with 912 additions and 338 deletions.
2 changes: 1 addition & 1 deletion docs/apps/animate_rig.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.animate_rig"
---

::: src.fast_cd.apps.animate_rig
::: src.fast_cody.apps.animate_rig
2 changes: 1 addition & 1 deletion docs/apps/cd_demo_pose_tracker.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.cd_demo_pose_tracker"
---

::: src.fast_cd.apps.cd_demo_pose_tracker
::: src.fast_cody.apps.cd_demo_pose_tracker
2 changes: 1 addition & 1 deletion docs/apps/interactive_cd_affine_handle.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.interactive_cd_affine_handle"
---

::: src.fast_cd.apps.interactive_cd_affine_handle
::: src.fast_cody.apps.interactive_cd_affine_handle
2 changes: 1 addition & 1 deletion docs/apps/interactive_cd_face_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.interactive_cd_face_tracking"
---

::: src.fast_cd.apps.interactive_cd_face_tracking
::: src.fast_cody.apps.interactive_cd_face_tracking
2 changes: 1 addition & 1 deletion docs/apps/interactive_cd_rig_anim.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.interactive_cd_rig_anim"
---

::: src.fast_cd.apps.interactive_cd_rig_anim
::: src.fast_cody.apps.interactive_cd_rig_anim
2 changes: 1 addition & 1 deletion docs/apps/test_FAST_IK.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.test_FAST_IK"
---

::: src.fast_cd.apps.test_FAST_IK
::: src.fast_cody.apps.test_FAST_IK
2 changes: 1 addition & 1 deletion docs/apps/test_FAST_IK_CD_tex.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.test_FAST_IK_CD_tex"
---

::: src.fast_cd.apps.test_FAST_IK_CD_tex
::: src.fast_cody.apps.test_FAST_IK_CD_tex
2 changes: 1 addition & 1 deletion docs/apps/test_FAST_IK_tex.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "apps.test_FAST_IK_tex"
---

::: src.fast_cd.apps.test_FAST_IK_tex
::: src.fast_cody.apps.test_FAST_IK_tex
2 changes: 1 addition & 1 deletion docs/arap_hessian.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "arap_hessian"
---

::: src.fast_cd.arap_hessian
::: src.fast_cody.arap_hessian
2 changes: 1 addition & 1 deletion docs/average_onto_simplex.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "average_onto_simplex"
---

::: src.fast_cd.average_onto_simplex
::: src.fast_cody.average_onto_simplex
2 changes: 1 addition & 1 deletion docs/closest_orthogonal_subspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "closest_orthogonal_subspace"
---

::: src.fast_cd.closest_orthogonal_subspace
::: src.fast_cody.closest_orthogonal_subspace
2 changes: 1 addition & 1 deletion docs/cluster_centroids.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "cluster_centroids"
---

::: src.fast_cd.cluster_centroids
::: src.fast_cody.cluster_centroids
2 changes: 1 addition & 1 deletion docs/cluster_grouping_matrices.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "cluster_grouping_matrices"
---

::: src.fast_cd.cluster_grouping_matrices
::: src.fast_cody.cluster_grouping_matrices
2 changes: 1 addition & 1 deletion docs/complementary_constraint_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "complementary_constraint_matrix"
---

::: src.fast_cd.complementary_constraint_matrix
::: src.fast_cody.complementary_constraint_matrix
8 changes: 4 additions & 4 deletions docs/create_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ for file in docs/*/*.md; do
done
#For all files not in a module
shopt -s nullglob
for file in src/fast_cd/*.py; do
for file in src/fast_cody/*.py; do
name=$(basename "$file" .py)
if ! [ "$name" = "__init__" ]; then
path="docs/${name}.md"
echo "---" > $path
echo "title: \"${name}\"" >> $path
echo "---" >> $path
echo >> $path
echo "::: src.fast_cd.${name}" >> $path
echo "::: src.fast_cody.${name}" >> $path
fi
done
#For all files in a module
shopt -s nullglob
for file in src/fast_cd/*/*.py; do
for file in src/fast_cody/*/*.py; do
name=$(basename "$file" .py)
modulename=$(basename "$(dirname $file)")
if ! [ "$name" = "__init__" ]; then
Expand All @@ -40,6 +40,6 @@ for file in src/fast_cd/*/*.py; do
echo "title: \"${modulename}.${name}\"" >> $path
echo "---" >> $path
echo >> $path
echo "::: src.fast_cd.${modulename}.${name}" >> $path
echo "::: src.fast_cody.${modulename}.${name}" >> $path
fi
done
2 changes: 1 addition & 1 deletion docs/deformation_jacobian.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "deformation_jacobian"
---

::: src.fast_cd.deformation_jacobian
::: src.fast_cody.deformation_jacobian
2 changes: 1 addition & 1 deletion docs/diffuse_weights.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "diffuse_weights"
---

::: src.fast_cd.diffuse_weights
::: src.fast_cody.diffuse_weights
2 changes: 1 addition & 1 deletion docs/eigs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "eigs"
---

::: src.fast_cd.eigs
::: src.fast_cody.eigs
2 changes: 1 addition & 1 deletion docs/fast_cd_sim.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "fast_cd_sim"
---

::: src.fast_cd.fast_cd_sim
::: src.fast_cody.fast_cd_sim
2 changes: 1 addition & 1 deletion docs/laplacian.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "laplacian"
---

::: src.fast_cd.laplacian
::: src.fast_cody.laplacian
2 changes: 1 addition & 1 deletion docs/laplacian_eigenmodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "laplacian_eigenmodes"
---

::: src.fast_cd.laplacian_eigenmodes
::: src.fast_cody.laplacian_eigenmodes
2 changes: 1 addition & 1 deletion docs/lbs_jacobian.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "lbs_jacobian"
---

::: src.fast_cd.lbs_jacobian
::: src.fast_cody.lbs_jacobian
2 changes: 1 addition & 1 deletion docs/lbs_weight_space_constraint.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "lbs_weight_space_constraint"
---

::: src.fast_cd.lbs_weight_space_constraint
::: src.fast_cody.lbs_weight_space_constraint
2 changes: 1 addition & 1 deletion docs/linear_elasticity_hessian.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "linear_elasticity_hessian"
---

::: src.fast_cd.linear_elasticity_hessian
::: src.fast_cody.linear_elasticity_hessian
2 changes: 1 addition & 1 deletion docs/mediapipe_face_captor.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "mediapipe_face_captor"
---

::: src.fast_cd.mediapipe_face_captor
::: src.fast_cody.mediapipe_face_captor
2 changes: 1 addition & 1 deletion docs/momentum_leaking_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "momentum_leaking_matrix"
---

::: src.fast_cd.momentum_leaking_matrix
::: src.fast_cody.momentum_leaking_matrix
2 changes: 1 addition & 1 deletion docs/normalize_height_and_center.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "normalize_height_and_center"
---

::: src.fast_cd.normalize_height_and_center
::: src.fast_cody.normalize_height_and_center
2 changes: 1 addition & 1 deletion docs/one_euro_filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "one_euro_filter"
---

::: src.fast_cd.one_euro_filter
::: src.fast_cody.one_euro_filter
2 changes: 1 addition & 1 deletion docs/orthonormalize.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "orthonormalize"
---

::: src.fast_cd.orthonormalize
::: src.fast_cody.orthonormalize
2 changes: 1 addition & 1 deletion docs/project_into_subspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "project_into_subspace"
---

::: src.fast_cd.project_into_subspace
::: src.fast_cody.project_into_subspace
2 changes: 1 addition & 1 deletion docs/project_out_subspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "project_out_subspace"
---

::: src.fast_cd.project_out_subspace
::: src.fast_cody.project_out_subspace
5 changes: 0 additions & 5 deletions docs/project_to_orthogonal.md

This file was deleted.

5 changes: 5 additions & 0 deletions docs/read_msh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: "read_msh"
---

::: src.fast_cody.read_msh
2 changes: 1 addition & 1 deletion docs/read_rig_anim_from_json.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "read_rig_anim_from_json"
---

::: src.fast_cd.read_rig_anim_from_json
::: src.fast_cody.read_rig_anim_from_json
2 changes: 1 addition & 1 deletion docs/read_rig_from_json.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "read_rig_from_json"
---

::: src.fast_cd.read_rig_from_json
::: src.fast_cody.read_rig_from_json
2 changes: 1 addition & 1 deletion docs/rig_curve_geometry.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "rig_curve_geometry"
---

::: src.fast_cd.rig_curve_geometry
::: src.fast_cody.rig_curve_geometry
2 changes: 1 addition & 1 deletion docs/rig_geometry.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "rig_geometry"
---

::: src.fast_cd.rig_geometry
::: src.fast_cody.rig_geometry
2 changes: 1 addition & 1 deletion docs/rotate_rig.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "rotate_rig"
---

::: src.fast_cd.rotate_rig
::: src.fast_cody.rotate_rig
2 changes: 1 addition & 1 deletion docs/skinning_clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "skinning_clusters"
---

::: src.fast_cd.skinning_clusters
::: src.fast_cody.skinning_clusters
2 changes: 1 addition & 1 deletion docs/skinning_subspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "skinning_subspace"
---

::: src.fast_cd.skinning_subspace
::: src.fast_cody.skinning_subspace
2 changes: 1 addition & 1 deletion docs/umfpack_lu_solve.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "umfpack_lu_solve"
---

::: src.fast_cd.umfpack_lu_solve
::: src.fast_cody.umfpack_lu_solve
2 changes: 1 addition & 1 deletion docs/vectorized_trace.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "vectorized_trace"
---

::: src.fast_cd.vectorized_trace
::: src.fast_cody.vectorized_trace
2 changes: 1 addition & 1 deletion docs/vectorized_transpose.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "vectorized_transpose"
---

::: src.fast_cd.vectorized_transpose
::: src.fast_cody.vectorized_transpose
2 changes: 1 addition & 1 deletion docs/viewers/ClustersViewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "viewers.ClustersViewer"
---

::: src.fast_cd.viewers.ClustersViewer
::: src.fast_cody.viewers.ClustersViewer
2 changes: 1 addition & 1 deletion docs/viewers/WeightsViewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "viewers.WeightsViewer"
---

::: src.fast_cd.viewers.WeightsViewer
::: src.fast_cody.viewers.WeightsViewer
2 changes: 1 addition & 1 deletion docs/viewers/interactive_handle_subspace_viewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "viewers.interactive_handle_subspace_viewer"
---

::: src.fast_cd.viewers.interactive_handle_subspace_viewer
::: src.fast_cody.viewers.interactive_handle_subspace_viewer
2 changes: 1 addition & 1 deletion docs/viewers/interactive_handle_viewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "viewers.interactive_handle_viewer"
---

::: src.fast_cd.viewers.interactive_handle_viewer
::: src.fast_cody.viewers.interactive_handle_viewer
2 changes: 1 addition & 1 deletion docs/world2rel.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "world2rel"
---

::: src.fast_cd.world2rel
::: src.fast_cody.world2rel
2 changes: 1 addition & 1 deletion docs/ympr_to_lame.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
title: "ympr_to_lame"
---

::: src.fast_cd.ympr_to_lame
::: src.fast_cody.ympr_to_lame
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ plugins:
default_handler: python
handlers:
python:
paths: [src, src/fast_cd]
paths: [src, src/fast_cody]
options:
heading_level: 2
show_root_toc_entry: false
show_root_heading: false
show_signature_annotations: false
# show_signature: false
docstring_style: "numpy"
repo_url: https://github.com/otmanon/fast_cd_pyb/
repo_name: otmanon/fast_cd_pyb/
repo_url: https://github.com/otmanon/fast_cody/
repo_name: otmanon/fast_cody/
extra:
analytics:
provider: google
Expand Down
Loading

0 comments on commit 5a5827e

Please sign in to comment.