Skip to content

Commit 8b5b424

Browse files
committed
Rename example: forest -> imposters
1 parent d1e6a4b commit 8b5b424

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ name = "wireframe"
176176
path = "examples/wireframe/src/main.rs"
177177

178178
[[example]]
179-
name = "forest"
180-
path = "examples/forest/src/main.rs"
179+
name = "imposters"
180+
path = "examples/imposters/src/main.rs"
181181

182182
[[example]]
183183
name = "normals"

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ This is the same as the `Triangle` example, except it only uses the core module
124124

125125
![Wireframe example](https://asny.github.io/three-d/0.18/wireframe.png)
126126

127-
## Forest [[code](https://github.com/asny/three-d/tree/master/examples/forest/src/main.rs)] [[demo](https://asny.github.io/three-d/0.18/forest.html)]
127+
## Imposters [[code](https://github.com/asny/three-d/tree/master/examples/imposters/src/main.rs)] [[demo](https://asny.github.io/three-d/0.18/imposters.html)]
128128

129-
![Forest example](https://asny.github.io/three-d/0.18/forest.png)
129+
![Imposters example](https://asny.github.io/three-d/0.18/imposters.png)
130130

131131
## Instanced Draw Order [[code](https://github.com/asny/three-d/tree/master/examples/instanced_draw_order/src/main.rs)] [[demo](https://asny.github.io/three-d/0.18/instanced_draw_order.html)]
132132

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "forest"
2+
name = "imposters"
33
version = "0.1.0"
44
authors = ["Asger Nyman Christiansen <[email protected]>"]
55
edition = "2021"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use three_d::*;
99

1010
pub async fn run() {
1111
let window = Window::new(WindowSettings {
12-
title: "Forest!".to_string(),
12+
title: "Imposters!".to_string(),
1313
max_size: Some((1280, 720)),
1414
..Default::default()
1515
})

0 commit comments

Comments
 (0)