File size: 7,623 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 |
--- Box functions.
--- Returns a 3D box constrained by the specified values; if minz and maxz omitted a 2D box(rect) is returned.
-- @cstyle box box(int minx, int miny, int minz, int maxx, int maxy, int maxz).
-- @param minx integer X coordinate of the lower left corner of the box.
-- @param miny integer Y coordinate of the lower left corner of the box.
-- @param minz integer Z coordinate of the lower left corner of the box; can be omitted together with maxz.
-- @param maxx integer X coordinate of the upper right corner of the box.
-- @param maxy integer Y coordinate of the upper right corner of the box.
-- @param maxz integer Z coordinate of the upper right corner of the box; can be omitted together with minz.
-- @return box.
function box(minx, miny, minz, maxx, maxy, maxz)
end
--- Returns a 3D box given the one of the box diagonals; if z1 and z2 omitted then a 2d box is returned; accepts also points as parameters.
-- @cstyle box box(int x1, int y1, int z1, int x2, int y2, int z2).
-- @cstyle box box(int x1, int y1, int x2, int y2).
-- @cstyle box box(point p1, point p2).
-- @return box.
function boxdiag(x1, y1, z1, x2, y2, z2)
end
--- Creates a box box described by origin and size vectors (points).
-- @cstyle box sizebox(point min, point size).
-- @cstyle box sizebox(point min, int width, int height).
-- @cstyle box sizebox(int left, int top, point size).
-- @param min point lower left corner of the box.
-- @param size point size vector of the box.
-- @return box.
function sizebox(...)
end
--- Rerurns the min point of the box.
-- @cstyle point box::min(box b).
-- @return point.
function box:min()
end
--- Returns the max point of the box.
-- @cstyle poin box::max(box b).
-- @return point.
function box:max()
end
--- Returns X coordinate of the min point of the box.
-- @cstyle int box::minx(box b).
-- @return int.
function box:minx()
end
--- Returns Y coordinate of the min point of the box.
-- @cstyle int box::miny(box b).
-- @return int.
function box:miny()
end
--- Returns Z coordinate of the min point of the box.
-- @cstyle int box::minz(box b).
-- @return int or nil(if the box is 2D).
function box:minz()
end
--- Returns X, Y, Z coordinate of the min point of the box.
-- @return int, int, int or nil(if the box is 2D).
function box:minxyz()
end
--- Returns X coordinate of the max point of the box.
-- @cstyle int box::maxx(box b).
-- @return int.
function box:maxx()
end
--- Returns Y coordinate of the max point of the box.
-- @cstyle int box::maxy(box b).
-- @return int.
function box:maxy()
end
--- Returns Z coordinate of the max point of the box.
-- @cstyle int box::maxz(box b).
-- @return int or nil(if the box is 2D).
function box:maxz()
end
--- Returns X, Y, Z coordinate of the max point of the box.
-- @return int, int, int or nil(if the box is 2D).
function box:maxxyz()
end
--- Returns the X size of the box.
-- @cstyle int box::sizex(box b).
-- @return int.
function box:sizex()
end
--- Returns the Y size of the box.
-- @cstyle int box::sizey(box b).
-- @return int.
function box:sizey()
end
--- Returns the Z size of the box.
-- @cstyle int box::sizez(box b).
-- @return int or nil(if the box is 2D).
function box:sizez()
end
--- Returns the X, Y, Z size of the box.
-- @return int, int, int or nil(if the box is 2D).
function box:sizexyz()
end
--- Returns the min x, min y, max x and max y of the box.
-- @return int, int, int, int.
function box:xyxy()
end
--- Returns the min x, min y, minz, max x, max y and max z of the box.
-- @return int, int, int, int, int, int.
function box:xyzxyz()
end
--- Returns the size of the box as a vector (point).
-- @cstyle int box::size(box b).
-- @return point.
function box:size()
end
--- Shows if the box points has valid Z coordinates.
-- @cstyle bool box::IsValidZ(box b).
-- @return bool.
function box:IsValidZ()
end
--- Shows if the min point coordinates of the box are less than or equal to its max point coordinates.
-- @cstyle bool box::IsValid(box b).
-- @return bool
function box:IsValid()
end
--- Returns the geometric center of the box as a point.
-- @cstyle point box::Center(box b).
-- @return point.
function box:Center()
end
--- Checks if a point is inside a box
-- @cstyle bool box::PointInside(point pt).
-- @cstyle bool box::PointInside(int x, int y, int z).
-- @cstyle bool box::PointInside(bool any, point pt1, point pt2, point p3, ...).
-- @cstyle bool box::PointInside(bool any, table pts).
-- @return bool.
function box:PointInside(pt, ...)
end
--- Checks if a point is inside a box (2D variant)
-- @cstyle bool box::Point2DInside(point pt).
-- @cstyle bool box::Point2DInside(int x, int y).
-- @cstyle bool box::Point2DInside(bool any, point pt1, point pt2, point p3, ...).
-- @cstyle bool box::Point2DInside(bool any, table pts).
-- @return bool.
function box:Point2DInside(pt, ...)
end
--- Computes the distance to another box or to a point
-- @cstyle int box::Dist(box b).
-- @cstyle int box::Dist(point p).
-- @return int.
function box:Dist(b)
end
--- Computes the 2D distance to another box or to a point
-- @cstyle int box::Dist2D(box b).
-- @cstyle int box::Dist2D(point p).
-- @return int.
function box:Dist2D(b)
end
--- Returns a box, created by moving given box with specified offset.
-- @cstyle point box::Offset(box b, point offset).
-- @param offset point.
-- @return box.
function Offset(box, offset)
end
--- Returns a box, created by scaling its boundaries by given promile.
-- If the box 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 the 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 scalex int.
-- @param scaley int.
-- @param scalez int.
-- @return box.
function ScaleBox(box, scalex, scaley, scalez)
end
--- Returns a box, created by resizing given box to specified size.
-- @cstyle point box::Resize(box b, point size).
-- @param size point.
-- @return box.
function Resize(box, size)
end
--- Returns a box, created by moving given box to specified point.
-- @cstyle point box::Resize(box b, point pos).
-- @param pos point.
-- @return box.
function MoveTo(box, pos)
end
--- Returns the minimal box containing b1 and b2.
-- @cstyle box AddRects(box b1, box b2).
-- @param b1 box.
-- @param b2 box.
-- @return box.
function AddRects(b1, b2)
end
--- Returns a box obtained from intersection of the given boxes.
-- @cstyle box IntersectRects(box b1, box b2).
-- @param b1 box.
-- @param b2 box.
-- @return box.
function IntersectRects(b1, b2)
end
--- Returns the given param is box.
-- @cstyle bool IsBox(param).
-- @param box any.
-- @return bool.
function IsBox(param)
end
--- Extends a given box by other boxes or points.
-- Accepts any number of both points and boxes.
-- Gracefully returns if there is no input.
-- @cstyle box Extend(box b1, box b2, ...).
-- @cstyle box Extend(box b1, point p1, ...).
-- @return box.
function Extend(b1, b2, ...)
end
--- Returns a transformed box by rotation, translation and scaling.
-- @cstyle box Transform(box, angle, offset, axis, scale)
-- @param box box; box to be transformed
-- @param angle int; rotation angle.
-- @param offset point/object; translation offset.
-- @param axis point; rotation axis.
-- @param scale int; scaling percents.
-- @return box; the transformed box.
function Transform(box, angle, offset, axis, scale)
end
function TransformXYZ(box, angle, offset, axis, scale)
end |