mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 14:20:59 +00:00
Make the test nodes a little easier to read.
This commit is contained in:
parent
683adf1850
commit
baf9b7c181
1 changed files with 8 additions and 8 deletions
|
@ -14,8 +14,8 @@
|
|||
#endif
|
||||
|
||||
mclipnode_t clipnodes0[] = {
|
||||
{ 0, { 1, -1}},
|
||||
{ 1, {-1, -2}},
|
||||
{ 0, { 1, CONTENTS_EMPTY}},
|
||||
{ 1, {CONTENTS_EMPTY, CONTENTS_SOLID}},
|
||||
};
|
||||
|
||||
mplane_t planes0[] = {
|
||||
|
@ -33,9 +33,9 @@ hull_t hull0 = {
|
|||
};
|
||||
|
||||
mclipnode_t clipnodes1[] = {
|
||||
{ 0, { 1, -2}},
|
||||
{ 1, { 2, -2}},
|
||||
{ 2, {-2, -1}},
|
||||
{ 0, { 1, CONTENTS_SOLID}},
|
||||
{ 1, { 2, CONTENTS_SOLID}},
|
||||
{ 2, {CONTENTS_SOLID, CONTENTS_EMPTY}},
|
||||
};
|
||||
|
||||
mplane_t planes1[] = {
|
||||
|
@ -54,9 +54,9 @@ hull_t hull1 = {
|
|||
};
|
||||
|
||||
mclipnode_t clipnodes2[] = {
|
||||
{ 0, { 2, 1}},
|
||||
{ 1, {-2, -2}},
|
||||
{ 2, {-2, -1}},
|
||||
{ 0, { 2, 1}},
|
||||
{ 1, {CONTENTS_SOLID, CONTENTS_SOLID}},
|
||||
{ 2, {CONTENTS_SOLID, CONTENTS_EMPTY}},
|
||||
};
|
||||
|
||||
mplane_t planes2[] = {
|
||||
|
|
Loading…
Reference in a new issue