File size: 11,501 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
--- Point functions.
--- Returns a point with the specified coordinates, accepts 2 or 3 parameters.
-- @cstyle point point(int x, int y, int z).
-- @param x integer X-coordinate of the point.
-- @param y integer Y-coordinate of the point.
-- @param z integer (optional) Z-coordinate of the point.
-- @return point.
function point(x, y, z)
end
--- Returns the X coordinate of the point.
-- @cstyle int point::x(point p).
-- @return int.
function point:x()
end
--- Returns the Y coordinate of the point.
-- @cstyle int point::y(point p).
-- @return int.
function point:y()
end
--- Returns the Z coordinate of the point.
-- @cstyle int point::z(point p).
-- @return int.
function point:z()
end
--- Shows if the point has a valid Z coordinate.
-- @cstyle bool point::IsValidZ(point p).
-- @return bool.
function point:IsValidZ()
end
--- Shows if the point is valid.
-- @cstyle bool point::IsValid(point p).
-- @return bool.
function point:IsValid()
end
--- Returns the given point with x-cooridnate changed to x.
-- @cstyle point point:SetX(point self, int x).
-- @return point.
function point:SetX()
end
--- Returns the given point with y-cooridnate changed to y.
-- @cstyle point point:SetY(point self, int y).
-- @return point.
function point:SetY()
end
--- Returns the given point with z-cooridnate changed to z.
-- @cstyle point point:SetZ(point self, int z).
-- @return point.
function point:SetZ()
end
--- Returns the given point with z-cooridnate changed to invalid value; the returned point is considered 2D.
-- @cstyle point point:SetInvalidZ(point self).
-- @return point.
function point:SetInvalidZ()
end
--- Returns a point, created by resizing the given vector by given promile.
-- If the point is with invalid Z, the z coordinate would be omitted.
-- A point can be provided as parameter which combines all three values.
-- If only one value is given as parameter all three coordinates are scaled by the given value.
-- If scalex and scaley are only given scalez defaults 1000(don't scale).
-- @cstyle point box::Scale(box b, int scalex, int scaley, int scalez).
-- @param pt point.
-- @param scalex int.
-- @param scaley int.
-- @param scalez int.
-- @return box.
function ScalePoint(pt, scalex, scaley, scalez)
end
--- Returns the given point shortened by delta_len.
-- @cstyle point point:Shorten(point self, int delta_len).
-- @param pt point.
-- @param delta_len int.
-- @return point.
function Shorten(pt, delta_len)
end
--- Returns the given point lengthened by delta_len.
-- @cstyle point point:Lengthen(point self, int delta_len).
-- @param pt point.
-- @param delta_len int.
-- @return point.
function Lengthen(pt, delta_len)
end
--- Returns the given point with len set to the given value.
-- @cstyle point point:SetLen(point self, int new_len).
-- @param pt point.
-- @param new_len int.
-- @return point.
function SetLen(pt, new_len)
end
--- Returns a point in the same direction with a length no more than the limit.
-- Made for optimization and readability - doesn't make an allocation if the point remains the same.
-- @cstyle point point:LimitLen(point self, int limit).
-- @param pt point.
-- @param limit int.
-- @return point.
function LimitLen(pt, limit)
end
--- Returns the point rotated around the given axis.
-- @cstyle point RotateAxis(point self, point axis, int angle, point center = point30).
-- @param axis point.
-- @param angle int; rotation angle.
-- @param center point; rotation center (optional).
-- @return point.
function RotateAxis(pt, axis, angle, center)
end
--- Returns the point rotated around the Z axis.
-- @cstyle point RotateRadius(int radius, int angle, point center = point30, bool return_xyz = false, bool bSync = false).
-- @param radius int; radius length.
-- @param angle int; rotation angle.
-- @param center point; rotation center (could be Z value only).
-- @param return_xyz bool; return x, y and z, not a point.
-- @param bSync bool; Use integer arithmetic only.
-- @return point or int, int.
function RotateRadius(radius, angle, center, return_xyz)
end
--- Returns the point rotated around x, y and z axis.
-- @cstyle point RotateXYZ(point self, int x, int y, int z).
-- @param x int.
-- @param y int.
-- @param z int.
-- @return point.
function RotateXYZ(x, y, z)
end
--- Returns cross product of the two given points.
-- @cstyle point Cross(point pt1, point pt2).
-- @param pt1 point.
-- @param pt2 point.
-- @return point.
function Cross(pt1, pt2)
end
--- Returns the Z coordinate of the 2D cross product of the two given points.
-- @cstyle int Cross2D(point pt1, point pt2).
-- @param pt1 point.
-- @param pt2 point.
-- @return int.
function Cross2D(pt1, pt2)
end
--- Returns dot product of the two given points.
-- @cstyle int Dot(point pt1, point pt2).
-- @param pt1 point.
-- @param pt2 point.
-- @return int.
function Dot(pt1, pt2)
end
--- Returns dot product of the two given points in 2D.
-- @cstyle int Dot(point pt1, point pt2).
-- @param pt1 point.
-- @param pt2 point.
-- @return int.
function Dot2D(pt1, pt2)
end
--- Returns the axis/angle couple to use for rotating point pt1 to pt2.
-- @cstyle point, int GetAxisAngle(point pt1, point pt2).
-- @param pt1 point.
-- @param pt2 point.
-- @return point, int; axis/angle to use for rotating pt1 to pt2.
function GetAxisAngle(pt1, pt2)
end
--- Returns the length of the radius vector determined by this point.
-- @cstyle int point::Len(point p).
-- @return int.
function point:Len()
end
--- Returns the 2D length of the radius vector determined by this point.
-- @cstyle int point::Len2D(point p).
-- @return int.
function point:Len2D()
end
--- Returns the square length of the radius vector determined by this point.
-- @cstyle int point::Len2(point p).
-- @return int.
function point:Len2()
end
--- Returns the square length of the radius vector determined by this 2D point(ignores Z).
-- @cstyle int point::Len2D2(point p).
-- @return int.
function point:Len2D2()
end
--- Returns the euclidian distance between the current and specified points.
-- @cstyle int point::Dist(point p1, point p2).
-- @param p2 point target point to calculate distance to.
-- @return int.
function point:Dist(p2)
end
--- Returns the squared euclidian distance between the current and specified points.
-- @cstyle int point::Dist2(point p1, point p2).
-- @param p2 point target point to calculate distance to.
-- @return int.
function point:Dist2(p2)
end
--- Returns the euclidian distance between the current and specified 2D points(ignores Z).
-- @cstyle int point::Dist2D(point p1, point p2).
-- @param p2; point target point to calculate distance to.
-- @return int.
function point:Dist2D(p2)
end
--- Returns the squared euclidian distance between the current and specified 2D points(ignores Z).
-- @cstyle int point::Dist2D2(point p1, point p2).
-- @param p2; point target point to calculate distance to.
-- @return int.
function point:Dist2D2(p2)
end
--- Shows if the point is inside the box (including the borders).
-- @cstyle bool point::InBox(point p, box b).
-- @param b box.
-- @return bool.
function point:InBox(b)
end
--- Same as InBox but in 2D.
-- @cstyle bool point::InBox2D(point p, box b).
-- @param b box.
-- @return bool.
function point:InBox2D(b)
end
--- Check if two points are equal in 2D
-- @cstyle bool point::Equal2D(point p1, point p2).
-- @param p2; point target point to check.
-- @return bool.
function point:Equal2D(p2)
end
--- Shows if the point is inside the horizontally oriented hexagone (including the borders).
-- @cstyle bool point::InHHex(point p, box b).
-- @param b box.
-- @return bool.
function point:InHHex(b)
end
--- Shows if the point is inside the vertically oriented hexagone (including the borders).
-- @cstyle bool point::InVHex(point p, box b).
-- @param b box.
-- @return bool.
function point:InVHex(b)
end
--- Shows if the point is inside the inscribed ellpise.
-- @cstyle bool point::InEllipse(point p, box b).
-- @param b box.
-- @return bool.
function point:InEllipse(b)
end
--- Rotates the given point along Z-axis.
-- @cstyle point Rotate(point pt, int angle).
-- @param pt point target point to rotate.
-- @param angle int angle to rotate point (0-360).
-- @return point.
function Rotate(pt, angle)
end
--- Calculate the orientation between two points.
-- @cstyle int CalcOrientation(point/object p1, point/object p2).
-- @param p1 point.
-- @param p2 point.
-- @return int.
function CalcOrientation(p1, p2)
end
--- Check if the given parameter is a point
-- @cstyle bool IsPoint(point pt).
-- @param pt point.
-- @return bool.
function IsPoint(pt)
end
--- Returns what the application assumes is invalid position.
-- @cstyle point InvalidPos().
-- @return point; a point which game assumes is the invalid positon.
function InvalidPos()
end
--- Returns true if 'pt' is closer to 'pt1' than to 'pt2'.
-- @cstyle bool IsCloser(point pt, point pt1, point pt2).
-- @param pt; point to check.
-- @param pt1; first point.
-- @param pt2; second point.
-- @return bool; |pt - pt1| < |pt - pt2|
function IsCloser(pt, pt1, pt2)
end
--- Returns true if 'pt' is closer to 'pt1' than the given dist.
-- @cstyle bool IsCloser(point pt, point pt1, int dist).
-- @param pt; point to check.
-- @param pt1; first point.
-- @param dist; distance to compare width.
-- @return bool; |pt - pt1| < dist
function IsCloser(pt, pt1, dist)
end
--- Returns true if 'pt' is closer to 'pt1' than to 'pt2' in 2D.
-- @cstyle bool IsCloser2D(point pt, point pt1, point pt2).
-- @param pt; point to check.
-- @param pt1; first point.
-- @param pt2; second point.
-- @return bool;
function IsCloser2D(pt, pt1, pt2)
end
--- Returns true if 'pt' is closer to 'pt1' than the given dist in 2D.
-- @cstyle bool IsCloser2D(point pt, point pt1, int dist).
-- @param pt; point to check.
-- @param pt1; first point.
-- @param dist; distance to compare width.
-- @return bool;
function IsCloser2D(pt, pt1, dist)
end
--- Returns true if the length of 'pt1' is smaller than the length of 'pt2'
-- @cstyle bool IsSmaller(point pt1, point pt2).
-- @param pt1; first point.
-- @param pt2; second point.
-- @return bool; |pt1| < |pt2|
function IsSmaller(pt1, pt2)
end
--- Returns true if the 2D length of 'pt1' is smaller than the 2D length of 'pt2'
-- @cstyle bool IsSmaller2D(point pt1, point pt2).
-- @param pt1; first point.
-- @param pt2; second point.
-- @return bool;
function IsSmaller2D(pt1, pt2)
end
function Normalize(pt)
end
--- Returns a transformed point by rotation, translation and scaling.
-- @cstyle point Transform(pt, angle, offset, axis, scale, inverse)
-- @cstyle point Transform(x, y, z, angle, offset, axis, scale, inverse)
-- @param pt point/object; point to be transformed.
-- @param angle int; rotation angle.
-- @param offset point/object; translation offset.
-- @param axis point; rotation axis.
-- @param scale int; scaling percents.
-- @param inverse bool; perform the inverse transformation.
-- @return point; the transformed point.
function Transform(pt, angle, offset, axis, scale, inv)
end
function Transform(x, y, z, angle, offset, axis, scale, inv)
end
function TransformXYZ(pt, angle, offset, axis, scale, inv)
end
function TransformXYZ(x, y, z, angle, offset, axis, scale, inv)
end
----
function ResolvePos(pt_or_obj_or_x, y, z)
end
function ResolveVisualPos(pt_or_obj_or_x, y, z)
end
function ResolvePosXYZ(pt_or_obj_or_x, y, z)
end
function ResolveVisualPosXYZ(pt_or_obj_or_x, y, z)
end
----
function ClampPoint(pos, box, border)
end
|