reafctor: update file structure

This commit is contained in:
Kristofers Solo 2025-01-03 14:08:51 +02:00
parent 47cdcca4cd
commit 69fae7946d
7 changed files with 13 additions and 16 deletions

View File

@ -2,11 +2,11 @@
#import "@preview/i-figured:0.2.4"
#import "@preview/tablex:0.0.9": tablex, rowspanx, colspanx, cellx
#import "@preview/wordometer:0.1.3": word-count, total-words
#import "layout.typ": project, indent-par
#import "src/layout.typ": project, indent-par
#import "@preview/fletcher:0.5.3" as fletcher: diagram, node, edge
#import fletcher.shapes: diamond
#import "utils.typ": *
#import "diagrams.typ": *
#import "src/utils.typ": *
#import "src/diagrams.typ": *
#show: word-count
#show: project.with(
@ -1482,7 +1482,6 @@ atgriežas un mēģina citu ceļu.
diagram(
spacing: (0em, 3em),
{
terminal-node((0, 0))
std-edge()
@ -1662,7 +1661,6 @@ atgriežas un mēģina citu ceļu.
action-node((1, 5), [Atjaunina pašreizējā un\ nākamā stāvu marķierus])
std-edge("l,uu,l")
}),
),
) <floor-transition-diagram>
@ -2108,9 +2106,8 @@ Projekta turpmākās attīstības iespējas ietver:
"bibliography.yml",
)
#include "attachments.typ"
#include "code.typ"
#include "doc.typ"
#include "src/attachments.typ"
#include "src/code.typ"
// #pagebreak()
// #total-words words

View File

@ -6,22 +6,22 @@
#figure(
caption: [Pilns "hexlab" bibliotēkas testu rezultāts],
image("assets/images/tests/hexlab-full.png", height: 90%),
image("../assets/images/tests/hexlab-full.png", height: 90%),
) <tests-hexlab-full>
#figure(
caption: [Tarpaulin rīka rezultāts "hexlab" bibliotēkai],
image("assets/images/tests/tarpaulin/hexlab.png"),
image("../assets/images/tests/tarpaulin/hexlab.png"),
) <tarpaulin-hexlab>
#figure(
caption: [Tokei rīka rezultāts "Maze Ascension" spēlei],
image("assets/images/tokei/maze-ascension.png"),
image("../assets/images/tokei/maze-ascension.png"),
) <tokei-maze-ascension>
#figure(
caption: [Tokei rīka rezultāts "hexlab" bibliotēkai],
image("assets/images/tokei/hexlab.png"),
image("../assets/images/tokei/hexlab.png"),
) <tokei-hexlab>

View File

@ -2,19 +2,19 @@
#codeblock(
[Labirinta būvētāja implementācijas piemērs],
"assets/code/hexlab/builder.rs",
"../assets/code/hexlab/builder.rs",
)
#codeblock(
[Labirinta sienu reprezentācijas piemērs],
"assets/code/hexlab/walls.rs",
"../assets/code/hexlab/walls.rs",
)
#codeblock(
[Labirinta stāvu implementācijas piemērs],
"assets/code/maze-ascension/floor.rs",
"../assets/code/maze-ascension/floor.rs",
)
#codeblock(
[Labirinta ģenerācijas implementācijas piemērs],
"assets/code/maze-ascension/maze_generation.rs",
"../assets/code/maze-ascension/maze_generation.rs",
)