add rail rendering and link and improve rendering performance by a bit
This commit is contained in:
parent
72204f18f3
commit
dbc1ad5b4b
8 changed files with 235 additions and 97 deletions
|
|
@ -25,5 +25,11 @@ struct Vector3{
|
|||
Emitter << YAML::EndMap;
|
||||
|
||||
}
|
||||
|
||||
inline bool operator != (const Vector3& v) const{
|
||||
return X != v.X ||
|
||||
Y != v.Y ||
|
||||
Z != v.Z;
|
||||
}
|
||||
};
|
||||
#endif //SPOONTOOL_VECTOR3_H
|
||||
Loading…
Reference in a new issue