39#include <unordered_map>
43#ifdef KICAD_GAL_PROFILE
113 std::pair<int, int>* newGroups =
new std::pair<int, int>[
m_groupsSize + 1];
158 int new_layer = orig_layer;
160 if( aReorderMap.count( orig_layer ) )
161 new_layer = aReorderMap.at( orig_layer );
177 for(
int layer : aLayers )
180 wxString::Format( wxT(
"Invalid layer number: %d" ), layer ) );
256 typedef std::numeric_limits<int> coord_limits;
257 double pos = coord_limits::lowest() / 2 + coord_limits::epsilon();
258 double size = coord_limits::max() - coord_limits::epsilon();
262 m_allItems.reset(
new std::vector<VIEW_ITEM*> );
277 l.
items = std::make_shared<VIEW_RTREE>();
302 if( aDrawPriority < 0 )
309 wxS(
"Already in a different view!" ) );
319 std::erase_if( layers, [](
int layer )
331 for(
int layer : layers )
334 l.
items->Insert( aItem, bbox );
346 std::unordered_map<int, std::vector<std::pair<VIEW_ITEM*, BOX2I>>> layerBulk;
355 if( !item->m_viewPrivData )
358 item->m_viewPrivData->
m_view =
this;
359 item->m_viewPrivData->m_drawPriority = drawPriority;
360 const BOX2I bbox = item->ViewBBox();
361 item->m_viewPrivData->m_bbox = bbox;
362 item->m_viewPrivData->m_cachedIndex =
m_allItems->size();
364 std::vector<int> layers = item->ViewGetLayers();
366 std::erase_if( layers, [](
int layer )
374 item->viewPrivData()->saveLayers( layers );
377 for(
int layer : layers )
378 layerBulk[layer].emplace_back( item, bbox );
382 for(
auto& [layerId, items] : layerBulk )
385 l.
items->BulkLoad( items );
395 if( !item || !item->m_viewPrivData || item->m_viewPrivData->m_view !=
this )
406 static int s_gcCounter = 0;
412 wxLogDebug( wxT(
"VIEW::Remove: item %s belongs to a different view" ), aItem->
GetClass() );
416 std::vector<VIEW_ITEM*>::iterator item =
m_allItems->end();
420 && cachedIndex <
static_cast<ssize_t
>(
m_allItems->size() )
437 if( s_gcCounter > 4096 )
443 return it ==
nullptr;
447 for(
size_t idx = 0; idx <
m_allItems->size(); idx++ )
448 ( *
m_allItems )[idx]->m_viewPrivData->m_cachedIndex = idx;
459 l.
items->Remove( aItem, bbox );
466 m_gal->DeleteGroup( prevGroup );
477 wxCHECK( (
unsigned) aLayerId <
m_layers.size(), );
478 wxCHECK( (
unsigned) aRequiredId <
m_layers.size(), );
481 m_layers[aLayerId].requiredLayers.insert( aRequiredId );
483 m_layers[aLayerId].requiredLayers.erase( aRequired );
500 std::vector<VIEW_LAYER*>::const_reverse_iterator i;
507 if( ( *i )->displayOnly || !( *i )->visible )
511 ( *i )->items->Query( aRect, visitor );
514 return aResult.size();
526 if( i->displayOnly || !i->visible )
529 i->items->Query( aRect, aFunc );
549 return fabs( matrix.
GetScale().
x * aSize );
574 wxASSERT_MSG(
false, wxT(
"This is not implemented" ) );
580 bool recacheGroups = (
m_gal != nullptr );
613 wxCHECK( fabs(ssize.
x) > 0 && fabs(ssize.
y) > 0, );
617 double zoom = 1.0 / std::max( fabs( vsize.
x / ssize.
x ), fabs( vsize.
y / ssize.
y ) );
626 wxASSERT_MSG( !aMirrorY,
_(
"Mirroring for Y axis is not supported yet" ) );
630 m_gal->SetFlip( aMirrorX, aMirrorY );
652 m_gal->ComputeWorldScreenMatrix();
681 m_gal->ComputeWorldScreenMatrix();
690 if( obscuringScreenRects.empty() )
693 BOX2D screenRect( { 0, 0 },
m_gal->GetScreenPixelSize() );
697 for(
const BOX2D& obscuringScreenRect : obscuringScreenRects )
713 while( !unobscuredPoly.
IsEmpty() )
715 unobscuredCenter = unobscuredPoly.
BBox().
Centre();
725 m_layers[aLayer].renderingOrder = aRenderingOrder;
734 return m_layers.at( aLayer ).renderingOrder;
740 std::sort( aLayers.begin(), aLayers.end(),
741 [
this](
int a,
int b )
743 return GetLayerOrder( a ) > GetLayerOrder( b );
750 std::map<int,VIEW_LAYER> new_map;
754 auto reorder_it = aReorderMap.find( layer.id );
758 if( reorder_it == aReorderMap.end() || reorder_it->second == layer.id )
760 new_map.emplace( layer.id, layer );
764 auto [new_it,__] = new_map.emplace( reorder_it->second, layer );
765 new_it->second.id = reorder_it->second;
783 std::vector<int> layers = item->ViewGetLayers();
812 gal->ChangeGroupColor(
group, color );
833 if(
m_gal->IsVisible() )
838 m_layers[aLayer].items->Query( r, visitor );
846 if(
m_gal->IsVisible() )
860 for(
int layer : viewData->
m_layers )
942 std::set<unsigned int>::iterator it;
962 std::set<unsigned int>::iterator it;
979 if(
m_gal->IsVisible() )
993 for(
int layer : viewData->
m_layers )
1034 if( !drawCondition )
1052 return b->viewPrivData()->m_drawPriority
1053 < a->viewPrivData()->m_drawPriority;
1061 return a->viewPrivData()->m_drawPriority
1062 < b->viewPrivData()->m_drawPriority;
1086 if( l->items->IsEmpty() )
1093 m_gal->SetTarget( l->target );
1094 m_gal->SetLayerDepth( l->renderingOrder );
1099 m_gal->StartDiffLayer();
1100 else if( l->hasNegatives )
1101 m_gal->StartNegativesLayer();
1103 l->items->Query( aRect, drawFunc );
1109 m_gal->EndDiffLayer();
1110 else if( l->hasNegatives )
1111 m_gal->EndNegativesLayer();
1118 m_gal->EnableDepthTest(
true );
1119 m_gal->SetLayerDepth( l->renderingOrder );
1121 l->items->Query( aRect, drawFunc );
1162 for(
int layer : layers )
1170 m_gal->SetLayerDepth( it->second.renderingOrder );
1172 draw( aItem, layer, aImmediate );
1179 for(
unsigned int i = 0; i < aGroup->
GetSize(); i++ )
1228 if( item && item->m_viewPrivData )
1229 item->m_viewPrivData->m_view =
nullptr;
1235 layer.items->RemoveAll();
1239 m_gal->ClearCache();
1264#ifdef KICAD_GAL_PROFILE
1265 PROF_TIMER totalRealTime(
"view-redraw-total");
1266 latencyProbeZoomToRender.Checkpoint(
"view-redraw-start");
1281#ifdef KICAD_GAL_PROFILE
1282 totalRealTime.
Stop();
1284 latencyProbeZoomToRender.AddTimer( totalRealTime );
1285 latencyProbeZoomToRender.Checkpoint(
"view-redraw-end");
1293 return m_gal->GetScreenPixelSize();
1323 layer.items->Query( r, visitor );
1339 if( aUpdateFlags &
LAYERS )
1348 for(
int layer : layers )
1354 else if( aUpdateFlags &
COLOR )
1372 for(
auto& [layer_id, layer] :
m_layers )
1450 if( new_bbox == old_bbox )
1455 for(
int layer : layers )
1463 l.
items->Remove( aItem, &old_bbox );
1464 l.
items->Insert( aItem, new_bbox );
1481 if( newLayers == viewData->
m_layers && new_bbox == viewData->
m_bbox )
1495 l.
items->Remove( aItem, &old_bbox );
1501 int prevGroup = viewData->
getGroup( layer );
1503 if( prevGroup >= 0 )
1505 m_gal->DeleteGroup( prevGroup );
1514 for(
int layer : newLayers )
1522 l.
items->Insert( aItem, new_bbox );
1530 auto it =
m_layers.find( aLayerId );
1535 for(
int layer : it->second.requiredLayers )
1541 if( it2 ==
m_layers.end() || !it2->second.visible )
1563 l.items->Query( r, visitor );
1571 if( !
m_gal->IsVisible() || !
m_gal->IsInitialized() )
1574#ifdef KICAD_GAL_PROFILE
1575 latencyProbeZoomToRender.Checkpoint(
"view-update-items");
1581 unsigned int cntGeomUpdate = 0;
1582 bool anyUpdated =
false;
1589 auto vpd = item->viewPrivData();
1594 if( vpd->m_requiredUpdate !=
NONE )
1605 double ratio = (double) cntGeomUpdate / (
double) cntTotal;
1616 layer.items->RemoveAll();
1619 std::unordered_map<int, std::vector<std::pair<VIEW_ITEM*, BOX2I>>> layerBulk;
1626 const BOX2I bbox = item->ViewBBox();
1627 item->m_viewPrivData->m_bbox = bbox;
1629 std::vector<int> layers = item->ViewGetLayers();
1630 item->viewPrivData()->saveLayers( layers );
1632 for(
int layer : layers )
1636 wxCHECK2_MSG( it !=
m_layers.end(),
continue, wxS(
"Invalid layer" ) );
1637 layerBulk[layer].emplace_back( item, bbox );
1643 if( item->viewPrivData()->m_requiredUpdate & (
LAYERS |
GEOMETRY ) )
1645 item->viewPrivData()->m_requiredUpdate &= ~(
LAYERS |
GEOMETRY );
1646 item->viewPrivData()->m_requiredUpdate |=
REPAINT;
1651 for(
auto& [layerId, items] : layerBulk )
1653 auto it =
m_layers.find( layerId );
1657 it->second.items->BulkLoad( items );
1669 if( item && item->viewPrivData() && item->viewPrivData()->m_requiredUpdate !=
NONE )
1672 item->viewPrivData()->m_requiredUpdate =
NONE;
1677#ifdef KICAD_GAL_PROFILE
1678 wxLogTrace(
traceGalProfile, wxS(
"View update: total items %u, geom %u anyUpdated %u" ),
1679 cntTotal, cntGeomUpdate, (
unsigned) anyUpdated );
1688 if( aUpdateFlags ==
NONE )
1693 if( item && item->viewPrivData() )
1695 item->viewPrivData()->m_requiredUpdate |= aUpdateFlags;
1703 std::function<
bool(
VIEW_ITEM* )> aCondition )
1705 if( aUpdateFlags ==
NONE )
1713 if( aCondition( item ) )
1715 if( item->viewPrivData() )
1717 item->viewPrivData()->m_requiredUpdate |= aUpdateFlags;
1732 if( item->viewPrivData() )
1734 int flags = aItemFlagsProvider( item );
1735 item->viewPrivData()->m_requiredUpdate |= flags;
1747 std::unique_ptr<VIEW> ret = std::make_unique<VIEW>();
1751 ret->SortOrderedLayers();
1768 if( cur_visible != aIsVisible )
1825 return viewData && viewData->
m_view ==
this;
1842 assert( aUpdateFlags !=
NONE );
1851 std::shared_ptr<VIEW_OVERLAY>
overlay = std::make_shared<VIEW_OVERLAY>();
1882 Hide( aItem,
false );
1885 if( aTakeOwnership )
1901 for(
const auto& layer :
m_layers )
constexpr int ARC_LOW_DEF
constexpr BOX2I BOX2ISafe(const BOX2D &aInput)
constexpr void SetMaximum()
constexpr void SetOrigin(const Vec &pos)
constexpr BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
constexpr size_type GetWidth() const
constexpr Vec Centre() const
constexpr size_type GetHeight() const
constexpr const SizeVec & GetSize() const
constexpr void SetEnd(coord_type x, coord_type y)
A color representation with 4 components: red, green, blue, alpha.
Abstract interface for drawing on a 2D-surface.
Contains all the knowledge about how to draw graphical object onto any particular output device.
Extend VIEW_ITEM by possibility of grouping items into a single object.
virtual unsigned int GetSize() const
Return the number of stored items.
virtual VIEW_ITEM * GetItem(unsigned int aIdx) const
bool storesGroups() const
Return information if the item uses at least one group id (ie.
std::vector< int > m_layers
int requiredUpdate() const
Return current update flag for an item.
int m_requiredUpdate
Flag required for updating.
int m_flags
Visibility flags.
void reorderGroups(std::unordered_map< int, int > aReorderMap)
Reorder the stored groups (to facilitate reordering of layers).
int m_cachedIndex
Cached index in m_allItems.
void deleteGroups()
Remove all of the stored group ids.
bool isRenderable() const
Return if the item should be drawn or not.
int m_drawPriority
Order to draw this item in a layer, lowest first.
VIEW * m_view
Current dynamic view the item is assigned to.
std::pair< int, int > * m_groups
layer_number:group_id pairs for each layer the item occupies.
int getGroup(int aLayer) const
Return number of the group id for the given layer, or -1 in case it was not cached before.
BOX2I m_bbox
Stores layer numbers used by the item.
void setGroup(int aLayer, int aGroup)
Set a group id for the item and the layer combination.
void saveLayers(const std::vector< int > &aLayers)
Save layers used by the item.
void clearUpdateFlags()
Mark an item as already updated, so it is not going to be redrawn.
virtual const BOX2I ViewBBox() const =0
Return the bounding box of the item covering all its layers.
double m_forcedTransparency
Additional transparency for diff'ing items.
VIEW_ITEM_DATA * viewPrivData() const
virtual void ViewDraw(int aLayer, VIEW *aView) const
Draw the parts of the object belonging to layer aLayer.
virtual std::vector< int > ViewGetLayers() const =0
Return the all the layers within the VIEW the object is painted on.
virtual wxString GetClass() const =0
Return the class name.
virtual double ViewGetLOD(int aLayer, const VIEW *aView) const
Return the level of detail (LOD) of the item.
VIEW_ITEM_DATA * m_viewPrivData
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
void SetMirror(bool aMirrorX, bool aMirrorY)
Control the mirroring of the VIEW.
void ShowPreview(bool aShow=true)
BOX2D GetViewport() const
Return the current viewport visible area rectangle.
void CopySettings(const VIEW *aOtherView)
Copy layers and visibility settings from another view.
virtual void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 })
Set the scaling factor, zooming around a given anchor point.
static constexpr int TOP_LAYER_MODIFIER
Rendering order modifier for layers that are marked as top layers.
void draw(VIEW_ITEM *aItem, int aLayer, bool aImmediate=false)
Draw an item, but on a specified layers.
bool m_reverseDrawOrder
Flag to reverse the draw order when using draw priority.
void UpdateAllLayersOrder()
Do everything that is needed to apply the rendering order of layers.
void updateItemColor(VIEW_ITEM *aItem, int aLayer)
Update colors that are used for an item to be drawn.
void SetViewport(const BOX2D &aViewport)
Set the visible area of the VIEW.
void SetRequired(int aLayerId, int aRequiredId, bool aRequired=true)
Mark the aRequiredId layer as required for the aLayerId layer.
VECTOR2D ToScreen(const VECTOR2D &aCoord, bool aAbsolute=true) const
Convert a world space point/vector to a point/vector in screen space coordinates.
static bool compareRenderingOrder(VIEW_LAYER *aI, VIEW_LAYER *aJ)
Determine rendering order of layers. Used in display order sorting function.
int GetLayerOrder(int aLayer) const
Return rendering order of a particular layer.
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
void ClearTargets()
Clear targets that are marked as dirty.
virtual void EnableTopLayer(bool aEnable)
Enable or disable display of the top layer.
void UpdateAllLayersColor()
Apply the new coloring scheme to all layers.
std::shared_ptr< std::vector< VIEW_ITEM * > > m_allItems
Flat list of all items.
std::shared_ptr< VIEW_OVERLAY > MakeOverlay()
void SetGAL(GAL *aGal)
Assign a rendering device for the VIEW.
int Query(const BOX2I &aRect, std::vector< LAYER_ITEM_PAIR > &aResult) const
Find all visible items that touch or are within the rectangle aRect.
std::vector< VIEW_ITEM * > m_ownedItems
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
void invalidateItem(VIEW_ITEM *aItem, int aUpdateFlags)
Manage dirty flags & redraw queuing when updating an item.
const VECTOR2I & GetScreenPixelSize() const
Return the size of the our rendering area in pixels.
bool HasItem(const VIEW_ITEM *aItem) const
Indicates whether or not the given item has been added to the view.
virtual int GetTopLayer() const
PAINTER * m_painter
PAINTER contains information how do draw items.
virtual void Redraw()
Immediately redraws the whole view.
void Clear()
Remove all items from the view.
std::set< unsigned int > m_topLayers
The set of layers that are displayed on the top.
bool m_enableOrderModifier
Whether to use rendering order modifier or not.
VECTOR2D ToWorld(const VECTOR2D &aCoord, bool aAbsolute=true) const
Converts a screen space point/vector to a point/vector in world space coordinates.
bool IsHiddenOnOverlay(const VIEW_ITEM *aItem) const
void ClearTopLayers()
Remove all layers from the on-the-top set (they are no longer displayed over the rest of layers).
void SetLayerOrder(int aLayer, int aRenderingOrder, bool aAutoSort=true)
Set rendering order of a particular layer.
void MarkClean()
Force redraw of view on the next rendering.
void updateItemGeometry(VIEW_ITEM *aItem, int aLayer)
Update all information needed to draw an item.
static constexpr int VIEW_MAX_LAYERS
Maximum number of layers that may be shown.
void updateLayers(VIEW_ITEM *aItem)
Update set of layers that an item occupies.
void RecacheAllItems()
Rebuild GAL display lists.
bool areRequiredLayersEnabled(int aLayerId) const
Check if every layer required by the aLayerId layer is enabled.
bool IsTargetDirty(int aTarget) const
Return true if any of layers belonging to the target or the target itself should be redrawn.
int m_nextDrawPriority
The next sequential drawing priority.
bool m_useDrawPriority
Flag to respect draw priority when drawing items.
void UpdateItems()
Iterate through the list of items that asked for updating and updates them.
bool IsCached(int aLayer) const
Return true if the layer is cached.
void AddBatch(const std::vector< VIEW_ITEM * > &aItems)
Add a batch of items to the view, using bulk-loaded R-trees for initial population.
std::pair< VIEW_ITEM *, int > LAYER_ITEM_PAIR
void SortLayers(std::vector< int > &aLayers) const
Change the order of given layer ids, so after sorting the order corresponds to layers rendering order...
BASE_SET m_layerVisibilityCache
void UpdateAllItems(int aUpdateFlags)
Update all items in the view according to the given flags.
bool m_hasPendingItemUpdates
True when at least one item has deferred update flags that still need processing.
std::unique_ptr< KIGFX::VIEW_GROUP > m_preview
static void OnDestroy(VIEW_ITEM *aItem)
Nasty hack, invoked by the destructor of VIEW_ITEM to auto-remove the item from the owning VIEW if th...
GAL * m_gal
Interface to PAINTER that is used to draw items.
std::map< int, VIEW_LAYER > m_layers
The set of possible displayed layers and its properties.
std::unique_ptr< VIEW > DataReference() const
Return a new VIEW object that shares the same set of VIEW_ITEMs and LAYERs.
void Hide(VIEW_ITEM *aItem, bool aHide=true, bool aHideOverlay=false)
Temporarily hide the item in the view (e.g.
virtual void SetTopLayer(int aLayer, bool aEnabled=true)
Set given layer to be displayed on the top or sets back the default order of layers.
void AddToPreview(VIEW_ITEM *aItem, bool aTakeOwnership=true)
void UpdateLayerColor(int aLayer)
Apply the new coloring scheme held by RENDER_SETTINGS in case that it has changed.
void syncLayerVisibilityCache()
void MarkDirty()
Force redraw of view on the next rendering.
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
std::vector< VIEW_LAYER * > m_orderedLayers
Sorted list of pointers to members of m_layers.
void clearGroupCache()
Clear cached GAL group numbers (ONLY numbers stored in VIEW_ITEMs, not group objects used by GAL).
VECTOR2D m_center
Center point of the VIEW (the point at which we are looking at).
void SortOrderedLayers()
Sorts m_orderedLayers after layer rendering order has changed.
void MarkTargetDirty(int aTarget)
Set or clear target 'dirty' flag.
void updateBbox(VIEW_ITEM *aItem)
Update bounding box of an item.
bool IsVisible(const VIEW_ITEM *aItem) const
Return information if the item is visible (or not).
BASE_SET m_layerCachedFlagCache
void UpdateAllItemsConditionally(int aUpdateFlags, std::function< bool(VIEW_ITEM *)> aCondition)
Update items in the view according to the given flags and condition.
void SetVisible(VIEW_ITEM *aItem, bool aIsVisible=true)
Set the item visibility.
void ReorderLayerData(std::unordered_map< int, int > aReorderMap)
Remap the data between layer ids without invalidating that data.
void redrawRect(const BOX2I &aRect)
Redraw contents within rectangle aRect.
VECTOR2< T > GetScale() const
Get the scale components of the matrix.
A small class to help profiling.
void Stop()
Save the time when this function was called, and set the counter stane to stop.
double msecs(bool aSinceLast=false)
Represent a set of closed polygons.
bool IsEmpty() const
Return true if the set is empty (no polygons at all)
void Deflate(int aAmount, CORNER_STRATEGY aCornerStrategy, int aMaxError)
void BooleanSubtract(const SHAPE_POLY_SET &b)
Perform boolean polyset difference.
const BOX2I BBox(int aClearance=0) const override
Compute a bounding box of the shape, with a margin of aClearance a collision.
@ ALLOW_ACUTE_CORNERS
just inflate the polygon. Acute angles create spikes
const wxChar *const traceGalProfile
Flag to enable debug output of GAL performance profiling.
MATRIX3x3< double > MATRIX3x3D
The Cairo implementation of the graphics abstraction layer.
@ COLOR
Color has changed.
@ INITIAL_ADD
Item is being added to the view.
@ NONE
No updates are required.
@ REPAINT
Item needs to be redrawn.
@ APPEARANCE
Visibility flag has changed.
@ GEOMETRY
Position or shape has changed.
@ LAYERS
Layers have changed.
@ ALL
All except INITIAL_ADD.
@ TARGET_NONCACHED
Auxiliary rendering target (noncached)
@ TARGET_CACHED
Main rendering target (cached)
@ TARGET_OVERLAY
Items that may change while the view stays the same (noncached)
@ HIDDEN
Item is temporarily hidden (usually in favor of a being drawn from an overlay, such as a SELECTION).
@ OVERLAY_HIDDEN
Item is temporarily hidden from being drawn on an overlay.
@ VISIBLE
Item is visible (in general)
std::shared_ptr< PNS_LOG_VIEWER_OVERLAY > overlay
bool operator()(VIEW_ITEM *aItem)
CLEAR_LAYER_CACHE_VISITOR(VIEW *aView)
bool operator()(VIEW_ITEM *aItem)
DRAW_ITEM_VISITOR(VIEW *aView, int aLayer, bool aUseDrawPriority, bool aReverseDrawOrder)
bool foundForcedTransparent
int layers[VIEW_MAX_LAYERS]
bool drawForcedTransparent
std::vector< VIEW_ITEM * > drawItems
bool operator()(VIEW_ITEM *aItem)
RECACHE_ITEM_VISITOR(VIEW *aView, GAL *aGal, int aLayer)
bool operator()(VIEW_ITEM *aItem)
UPDATE_COLOR_VISITOR(int aLayer, PAINTER *aPainter, GAL *aGal)
UPDATE_DEPTH_VISITOR(int aLayer, int aDepth, GAL *aGal)
bool operator()(VIEW_ITEM *aItem)
bool diffLayer
Layer should be drawn differentially over lower layers.
int renderingOrder
Rendering order of this layer.
bool hasNegatives
Layer should be drawn separately to not delete lower layers.
bool visible
Is the layer to be rendered?
bool displayOnly
Is the layer display only?
std::shared_ptr< VIEW_RTREE > items
R-tree indexing all items on this layer.
RENDER_TARGET target
Where the layer should be rendered.
wxLogTrace helper definitions.
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D