Skip to content

Commit 136182f

Browse files
committed
change(?): ?
A bunch of random stuff I forgot to commit.
1 parent d544594 commit 136182f

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A collection of information (a wiki) dealing with all things voxe
44
aliases = ["/wiki"]
55

66
[extra]
7-
lead = "This website is a collection of information dealing with all things voxel. To quote <a href='https://en.wikipedia.org/wiki/Voxel'>Wikipedia</a>:&nbsp;<i>„[...] a voxel represents a value on a <a href='https://en.wikipedia.org/wiki/Regular_grid'>regular grid</a> in three-dimensional space.‟</i> <br><br><b>Currently under construction.</b> <br><br>"
7+
lead = "This website is a collection of information dealing with all things voxel. To quote <a href='https://en.wikipedia.org/wiki/Voxel'>Wikipedia</a>:&nbsp;<i>„[...] a voxel represents a value on a <a href='https://en.wikipedia.org/wiki/Regular_grid'>regular grid</a> in three-dimensional space.‟</i> <br><br><b><a href='https://github.com/voxel-wiki/voxel-wiki.github.io/commits/main/'>Currently</a> under construction.</b> <br><br>"
88
repo_url = "https://github.com/voxel-wiki/voxel-wiki.github.io/blob/main/LICENSE.md"
99
repo_version = "License"
1010

content/wiki/engines/unreal.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ tags = ["engine"]
1818
## References
1919

2020
- [Unreal Engine: Official Website](https://www.unrealengine.com/)
21+
- [Voxel Plugin](https://voxelplugin.com/)

content/wiki/rendering/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ so it's best to leave it to a windowing library...
101101

102102
## General Rendering Methods
103103

104-
There are, in general, *two* families of volume rendering methods:
104+
There are, in general, *two* families of volume rendering methods, with different complexity, fidelity, extensibility, performance and memory trade-offs:
105105

106106
<ul class="exclusive-choice-set" aria-label="volume rendering methods">
107107
<li><a href="/wiki/surface-extraction">Surface Extraction</a></li>
@@ -115,7 +115,7 @@ which can then be [rasterized](https://en.wikipedia.org/wiki/Rasterisation) (eg:
115115

116116
In the latter family of **volume marching**, the volume itself is marched through via [raycasting](/wiki/raycasting)/raymarching (eg: visible pixels ⇒ voxels).
117117

118-
It is possible to combine both families for more complex techniques and effects.
118+
It's also possible to [combine](/wiki/raysterization) both families, presenting yet more trade-offs to use/apply and deal with.
119119

120120
---
121121

sass/overrides.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ html:has(body.draft) {
88
padding: 0 2rem;
99
}
1010

11+
body.dark {
12+
color-scheme: dark;
13+
}
14+
1115
.home > .container > .content {
1216
position: relative;
1317
}
@@ -71,6 +75,12 @@ article img {
7175
max-width: 100%;
7276
}
7377

78+
article q.fancy {
79+
quotes: "«" "»";
80+
font-style: italic;
81+
color: light-dark(#555,#bbb);
82+
}
83+
7484
article .important {
7585
font-size: 1.2em;
7686
}

0 commit comments

Comments
 (0)