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
4 changes: 2 additions & 2 deletions docs/articles/how-to-use-alembic.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ Alembicでは、任意の多角形を持つことが出来る。
1つ目のリストは面のインデックスとリストのインデックスを対応させた2次元のリストをフラットにしたものでもある。
具体例として、三角形と四角形をそれぞれ1つずつ持ち、1辺を共有するメッシュは以下の通り。

1. [0, 1, 2, 1, 3, 4, 2]
2. [3, 4]
1. `[0, 1, 2, 1, 3, 4, 2]`
2. `[3, 4]`

1つ目のリストを持つPropertyは`getFaceIndicesProperty`メンバ関数で取得でき、2つ目のリストを持つPropertyは`getFaceIndicesProperty`メンバ関数で取得できる。

Expand Down
24 changes: 12 additions & 12 deletions zensical.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ nav = [
{ "platanus" = "/platanus/" }
] },
{ "記事" = [
{ "Thrustの非同期実行" = "./articles/thrust-async.md" },
{ "Apple Magic Keyboardの設定" = "./articles/config-apple-magic-keyboard-in-ubuntu.md" },
{ "Alembicの使い方" = "./articles/how-to-use-alembic.md" },
{ "perf_event_paranoidを変更できない時の対処法" = "./articles/cannot-change-perf-event-paranoid.md" },
{ "gdbでのスタックトレースの自動取得" = "./articles/gdb-get-stacktrace.md" },
{ "Eigenで行優先の行列を行優先のベクトルに変換する時、ベクトルのイテレータを`std::contiguous_iterator`にする方法" = "./articles/make-reshaped-matrix-iterator-contiguous.md" },
{ "oneTBBの使い方" = "./articles/how_to_use_onetbb.md" },
{ "Ubuntu 25.04上のRadeonでRusticlを使う方法" = "./articles/how_to_use_rusticl_with_radeon_on_ubuntu.md" },
{ "AMD RDNA4のハードウェアの概要" = "./articles/overview_of_RDNA4_hardware.md" },
{ "AMD HIP" = "./articles/hip/intro/intro.md" },
{ "Address sanitizerとEigenを一緒に使うとき" = "./articles/eigen_with_asan.md" },
{ "Expression templatesのダングリング対策について" = "./articles/expression_templates.md" }
{ "Thrustの非同期実行" = "articles/thrust-async.md" },
{ "Apple Magic Keyboardの設定" = "articles/config-apple-magic-keyboard-in-ubuntu.md" },
{ "Alembicの使い方" = "articles/how-to-use-alembic.md" },
{ "perf_event_paranoidを変更できない時の対処法" = "articles/cannot-change-perf-event-paranoid.md" },
{ "gdbでのスタックトレースの自動取得" = "articles/gdb-get-stacktrace.md" },
{ "Eigenで行優先の行列を行優先のベクトルに変換する時、ベクトルのイテレータを`std::contiguous_iterator`にする方法" = "articles/make-reshaped-matrix-iterator-contiguous.md" },
{ "oneTBBの使い方" = "articles/how_to_use_onetbb.md" },
{ "Ubuntu 25.04上のRadeonでRusticlを使う方法" = "articles/how_to_use_rusticl_with_radeon_on_ubuntu.md" },
{ "AMD RDNA4のハードウェアの概要" = "articles/overview_of_RDNA4_hardware.md" },
{ "AMD HIP" = "articles/hip/intro/intro.md" },
{ "Address sanitizerとEigenを一緒に使うとき" = "articles/eigen_with_asan.md" },
{ "Expression templatesのダングリング対策について" = "articles/expression_templates.md" }
] },
{ "CUDAプログラミングガイド 日本語解説" = "/cuda_programming_guide_jp/" }
]
Expand Down