Home
last modified time | relevance | path

Searched defs:WVec (Results 1 – 4 of 4) sorted by relevance

/dports/games/openra/OpenRA-release-20200503/OpenRA.Game/
H A DWVec.cs22 public readonly int X, Y, Z;
24 public WVec(int x, int y, int z) { X = x; Y = y; Z = z; } in WVec() method
25 public WVec(WDist x, WDist y, WDist z) { X = x.Length; Y = y.Length; Z = z.Length; } in WVec() argument
27 public static readonly WVec Zero = new WVec(0, 0, 0);
34 public static WVec operator *(WVec a, int b) { return b * a; } in operator *()
47 public WVec Rotate(WRot rot) in Rotate()
54 public WVec Rotate(ref Int32Matrix4x4 mtx) in Rotate()
65 public WAngle Yaw
98 public static WVec FromPDF(MersenneTwister r, int samples) in FromPDF()
105 public bool Equals(WVec other) { return other == this; } in Equals()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/type/
H A Dtype-alias-bounds.rs14 type WVec<'b, T: 'b + 'b> = (&'b u32, Vec<T>); typedef
/dports/games/alephone/alephone-release-20190331/Source_Files/GameWorld/
H A Dworld.cpp643 void long_to_overflow_short_2d(long_vector2d& LVec, world_point2d& WVec, uint16& flags) in long_to_overflow_short_2d()
661 void overflow_short_to_long_2d(world_point2d& WVec, uint16& flags, long_vector2d& LVec) in overflow_short_to_long_2d()
H A Dworld.h229 static inline void long_to_short_2d(long_vector2d& LVec, world_vector2d&WVec) in long_to_short_2d()
234 static inline void short_to_long_2d(world_vector2d&WVec, long_vector2d& LVec) in short_to_long_2d()