Skip to content

Commit 93fd14e

Browse files
committed
Sync with 54780e0
1 parent e5e85cc commit 93fd14e

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

docs/open/user/core/attributes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Mesh attributes are buffers of data associated to a mesh element. They are chara
7777
will be stored in memory as `[x0, y0, z0, x1, y1, z1, ...]` etc. If you need to wrap external
7878
data with a compatible memory layout, please read our dedicated section on [wrapping external
7979
buffers](#wrapping-external-buffers). If you need to track ownership, you can use a
80-
[SharedSpan](../general-utilities/#shared-span) object.
80+
[SharedSpan](general-utilities.md#shared-span) object.
8181

8282
## Attribute Creation
8383

@@ -414,11 +414,11 @@ mesh.wrap_as_const_attribute(
414414

415415
!!! tip "Tracking Ownership And Moving Eigen Matrices"
416416
If you need to track the ownership of an external buffer being wrapped as a mesh attribute,
417-
please read our documentation about [SharedSpan](../general-utilities/#shared-span) objects. Any
417+
please read our documentation about [SharedSpan](general-utilities.md#shared-span) objects. Any
418418
`wrap_*` method that accepts a regular `span<>` object should also work with a managed
419419
`SharedSpan` object.
420420

421-
Using a [SharedSpan](../general-utilities/#shared-span) object to wrap an external object as
421+
Using a [SharedSpan](general-utilities.md#shared-span) object to wrap an external object as
422422
attribute allows moving a Eigen::Matrix and other arbitrary objects into mesh attributes without
423423
any extra buffer copy, as long as the memory layout of the coordinates are compatible.
424424

docs/open/user/core/mesh.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ mesh.add_hybrid(4,
202202

203203
!!! tip "Wrapping External Buffers ans Eigen Matrices"
204204
Please read our dedicated section on [wrapping external
205-
buffer](../attributes/#wrapping-external-buffers), as well as our documentation on
206-
[SharedSpan](../general-utilities/#shared-span) for tracking ownership of shared objects when
205+
buffer](attributes.md#wrapping-external-buffers), as well as our documentation on
206+
[SharedSpan](general-utilities.md#shared-span) for tracking ownership of shared objects when
207207
wrapping external buffers.
208208

209209
## Removing Vertices/Facets
@@ -266,7 +266,7 @@ reason, we distinguish most accessors between **getters** and **setters**:
266266
uniquely owned (i.e. there are more than 1 object referencing the same buffer).
267267

268268
Note that both getters and setters are **safe to use concurrently**. Please read our ["note on
269-
thread-safety"](#a-note-on-thread-safety) for more information.
269+
thread-safety"](attributes.md#a-note-on-thread-safety) for more information.
270270

271271
See below for a short example:
272272

@@ -340,7 +340,7 @@ V_ref.rowwise() -= V_ref.colwise().mean();
340340

341341
!!! tip "Mesh Attributes"
342342
Arbitrary mesh attributes can be viewed as Eigen matrices via the `matrix_view()` and
343-
`matrix_ref()` functions. Please read our [attribute documentation](../attributes) for some
343+
`matrix_ref()` functions. Please read our [attribute documentation](attributes.md) for some
344344
examples.
345345

346346
## Mesh Edges

docs/open/user/ui/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ registry.emplace<MyPositionComponent>(entity, MyPositionComponent(0,0,0));
7979

8080
## Further Documentation
8181

82-
[Doxygen generated documentation](../../{{ dox_folder }}/namespacelagrange_1_1ui.html)
82+
[Doxygen generated documentation](../../../{{ dox_folder }}/namespacelagrange_1_1ui.html)

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ classifiers = [ "Programming Language :: Python :: 3 :: Only", "Programming Lang
88
dependencies = [
99
"ghp-import~=2.1.0",
1010
"lagrange-open[docs]",
11-
"linkchecker~=10.3.0",
12-
"mkdocs~=1.4.2",
13-
"mkdocs-bibtex~=2.16.2",
11+
"linkchecker~=10.6.0",
12+
"mkdocs~=1.6.1",
13+
"mkdocs-bibtex~=2.21.0",
1414
"mkdocs-exclude~=1.0.2",
1515
"mkdocs-img2figv2-plugin~=0.0.2",
16-
"mkdocs-macros-plugin~=0.7.0",
17-
"mkdocs-material~=9.0.11",
16+
"mkdocs-macros-plugin~=1.5.0",
17+
"mkdocs-material~=9.7.4",
1818
"mkdocs-redirects~=1.2.0",
19-
"pygments~=2.18.0",
20-
"pymdown-extensions~=9.9.2",
19+
"pygments~=2.19.2",
20+
"pymdown-extensions~=10.21.0",
2121
"pypandoc-binary~=1.15",
2222
"pystache~=0.6.7",
2323
]

0 commit comments

Comments
 (0)