Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Interactive Wave Simulator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal Engeler
Interactive Wave Simulator
Commits
13e08fec
Commit
13e08fec
authored
3 years ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Efficient Block documentation
parent
fb0a6ac4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+148
-7
148 additions, 7 deletions
README.md
with
148 additions
and
7 deletions
README.md
+
148
−
7
View file @
13e08fec
...
...
@@ -366,31 +366,172 @@ Todo
### EfficientBlock ([efficient_block.hpp](include/efficient_block.hpp), [efficient_block.cpp](src/efficient_block.cpp))
**Description**
Todo
Represents a rectangular block. Scaled down version of the previous
`Block`
, optimized for current feature set.
**Usage**
Todo
-
Construct object
-
Call
`xywh`
to obtain an efficient representation of the properties, convert it to vertices and draw them
-
Note: This should be batched for peak performance (see
`SlimBlockchainHandler`
)
-
Check if a point is inside the block using
`is_inside`
-
Obtain the dimensions using
`width`
and
`height`
-
Move the block to a new position using
`translate`
-
Mark the block for removal using
`request_removal`
-
Check if a block has been marked for removal using
`needs_removal`
**Constructors and Destructors**
Todo
-
`EfficientBlock()`
-
`EfficientBlock(const EfficientBlock&)`
-
`EfficientBlock(int w, int h, int xoffset, int yoffset)`
Note that (
`xoffset`
,
`yoffset`
) are the coordinates of the lower left corner, with origin in the top left corner of the texture.
**Public Function Members**
Todo
-
`void request_removal()`
-
**Description**
:
Mark block for removal
-
**Preconditions**
:
N/A
-
**Postconditions**
:
Block is marked for removal
-
**Notes**
:
N/A
-
`void translate(int new_x, int new_y)`
-
**Description**
:
Translate block to new (LLC) texel-coordinates.
-
**Preconditions**
:
N/A
-
**Postconditions**
:
Block has been translated to (
`new_x`
,
`new_y`
).
-
**Notes**
:
N/A
-
`bool needs_removal() const`
-
**Description**
:
Check if block is marked for removal.
-
**Preconditions**
:
N/A
-
**Postconditions**
:
Returns
`true`
if block has been marked for removal, and
`false`
else.
-
**Notes**
:
N/A
-
`glm::ivec4 xywh() const`
-
**Description**
:
Get coordinates and dimensions of block.
-
**Preconditions**
:
N/A
-
**Postconditions**
:
Returns a
`glm::ivec4`
;
`[0]`
->x,
`[1]`
->y,
`[2]`
->width,
`[3]`
->height.
-
**Notes**
:
-
`bool is_inside(int x, int y) const`
-
**Description**
:
Check if a point lies within the block.
-
**Preconditions**
:
N/A
-
**Postconditions**
:
Returns
`true`
if point (
`x`
,
`y`
) is inside the block,
`false`
else.
-
**Notes**
:
N/A
-
`int width() const`
-
**Description**
:
Get the width of the block.
-
**Preconditions**
:
N/A
-
**Postconditions**
:
Returns the width of the block in texels.
-
**Notes**
:
-
`int height() const`
-
**Description**
:
Get the height of the block.
-
**Preconditions**
:
-
**Postconditions**
:
Returns the height of the block in texels.
-
**Notes**
:
**Private Function Members**
Todo
N/A
**Public Data Members**
Todo
N/A
**Private Data Members**
Todo
-
`glm::ivec4 xywh_`
Coordinates and dimensions of block
-
`bool needs_removal_`
Is block marked for removal?
**Notes**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment