direction corners
This commit is contained in:
parent
335cf3b8ac
commit
5855e4a5d0
1 changed files with 11 additions and 0 deletions
11
src/Mono.cs
11
src/Mono.cs
|
@ -215,4 +215,15 @@ static class Mono
|
||||||
new XYZi(0, 0, -1), // fwd
|
new XYZi(0, 0, -1), // fwd
|
||||||
new XYZi(0, 0, +1), // back
|
new XYZi(0, 0, +1), // back
|
||||||
};
|
};
|
||||||
|
static readonly XYZi[] corners = new XYZi[]
|
||||||
|
{
|
||||||
|
new XYZi(-1, -1, -1),
|
||||||
|
new XYZi(-1, -1, +1),
|
||||||
|
new XYZi(-1, +1, -1),
|
||||||
|
new XYZi(-1, +1, +1),
|
||||||
|
new XYZi(+1, -1, -1),
|
||||||
|
new XYZi(+1, -1, +1),
|
||||||
|
new XYZi(+1, +1, -1),
|
||||||
|
new XYZi(+1, +1, +1)
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue