sheet.addEntity(entityId);
sheet.removeEntity(entityId);
The entity will remove it from the sheet. Remove in this context means that the object will no longer be managed by the sheet, it won't respond to canvas changes and it won't emit object events. The caller is responsible for removing the entity's DOM elements, due to the caller being responsible for the creation of the DOM elements.
sheet.getEntityById(entityId);
sheet.getAllEntities();
sheet.getEntitiesAroundPoint(targetX, targetY, radius);
Note that this function tests for surrounding objects based on intersection of a box centered at (targetX, targetY) with the given radius.