Click or drag to resize

RendererAspectBase Class

The base class for aspects that need rendering.
Inheritance Hierarchy

Namespace:  Demo3D.Visuals.Renderers
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public abstract class RendererAspectBase : AspectComponentBase, 
	IRendererAspect

The RendererAspectBase type exposes the following members.

Constructors
  NameDescription
Protected methodRendererAspectBase
Initializes a new instance of the RendererAspectBase class
Top
Properties
  NameDescription
Public propertyAspectManagedBy
The Aspect that this is managed by.
(Inherited from AspectComponentBase.)
Public propertyBoundingBox
The bounding box of the aspect.
Public propertyBoundingSphere
The bounding sphere of the aspect.
Public propertyCastShadows
Whether the renderer casts a shadow.
Public propertyContainerBoundingBox
The bounding box of the owning container.
Public propertyContainerBoundingSphere
The bounding sphere of the owning container.
Public propertyContainerWorldMatrix
The world matrix of the owning container.
Public propertyHasRenderables
The value for whether the aspect has renderables to be rendered.
Public propertyId (Inherited from SerializableObject.)
Public propertyIsCollapsed
Collapse or expand the aspect in the Aspect Viewer.
(Inherited from AspectComponentBase.)
Public propertyIsEnabled
The value for whether the aspect is enabled.
(Inherited from AspectComponentBase.)
Public propertyIsInitialized
Gets the value of whether or not this aspect has been initialized. An aspect is initialized during the scenes initialization when starting a model.
(Inherited from AspectComponentBase.)
Public propertyIsLayerVisible
The value for whether the owning container's layer is visible.
Public propertyIsReadOnly
When true, disable editing in the Aspect Viewer
(Inherited from AspectComponentBase.)
Public propertyName
A unique name for the aspect
(Inherited from AspectComponentBase.)
Top
Methods
  NameDescription
Protected methodCanAdd
Determine whether the aspect can be added to the AspectContainer.
(Inherited from AspectComponentBase.)
Public methodCanRender
Determines whether the aspect can be rendered
Protected methodCleanupBindingAPI
Remove all bindable items that have been added to the binding api via UpdateBindingAPI.
(Inherited from AspectComponentBase.)
Public methodFindAspectT
Find an aspect of the desired type in this aspect's container.
(Inherited from AspectComponentBase.)
Public methodFindCreateAspectT
Find or, if one isn't found, create an aspect of the desired type in this aspect's container.
(Inherited from AspectComponentBase.)
Public methodFindCreateManagedAspectT
Find or, if one isn't found, create a managed aspect of the desired type in this aspect's container. The managed aspect will be owned by the declared aspect.
(Inherited from AspectComponentBase.)
Public methodGetRenderablesT
Get all IRenderable objects of the desired type, contained by this aspect.
Public methodIsVisibleForLOD
Method used to check if aspect is visible with regards to Level of Detail.
Public methodNotifyRenderableRequest
Protected methodOnAdded
Called when all other aspects have been added to an aspect container, this should never be invoked manually
(Overrides AspectComponentBaseOnAdded.)
Protected methodOnAssigned
Called when assigned to an aspect container, this should never be invoked manually. No other aspects should be accessed within this method.
(Inherited from AspectComponentBase.)
Protected methodOnDisabled
Called when disabled, this should never be invoked manually
(Overrides AspectComponentBaseOnDisabled.)
Protected methodOnEnabled
Called when enabled, this should never be invoked manually
(Overrides AspectComponentBaseOnEnabled.)
Protected methodOnInitialize
Called when the aspect container is Initialized, this should never be invoked manually
(Inherited from AspectComponentBase.)
Protected methodOnRemoved
Called when removed from an aspect container, this should never be invoked manually
(Overrides AspectComponentBaseOnRemoved.)
Protected methodOnReset
Called when the aspect container is Reset, this should never be invoked manually
(Inherited from AspectComponentBase.)
Public methodPick
A check to see a ray intersects with this aspect.
Public methodPickFromWorldFrustum
A check to see if the desired frustum intersects with this aspect.
Public methodPreRender
Preamble to the aspect rendering giving the aspect a chance to change settings.
Public methodRaisePropertiesChanged
Raise an PropertyChanged event for each value.
(Inherited from BindableBase.)
Public methodRaisePropertyChanged(PropertyChangedEventArgs)
Raise an PropertyChanged event for the specified value.
(Inherited from BindableBase.)
Public methodRaisePropertyChanged(String)
Raise an PropertyChanged event for the specified value.
(Inherited from BindableBase.)
Public methodRemoveAspect(Object)
Remove the desired aspect from this aspect's container.
(Inherited from AspectComponentBase.)
Public methodRemoveAspectT
Remove the aspect of the desired type from this aspect's container.
(Inherited from AspectComponentBase.)
Public methodRemoveManagedAspects
Remove all aspects that are being managed by this aspect..
(Inherited from AspectComponentBase.)
Public methodRender
Render the aspect.
Public methodRenderShadow
Render the shadow of the aspect.
Public methodRequestRender
Utility method to request a complete render from the app. This should be called after changing a property that affects the rendering of this aspect.
Public methodSerializableDependency(SerializableObject)
Whether the specified object depends on the serializable object.
(Inherited from AspectComponentBase.)
Public methodSerializableDependency(Visual)
Whether the specified visual depends on the serializable object.
(Inherited from AspectComponentBase.)
Protected methodSetINotifyPropertyChangedPropertyT
Checks to see if the property is the same as the specified value. It they're different then set the value and raise an PropertyChanged event. Property changes on the new value are also listened to and, if one occurs, the propertyChangedCallback handler will be invoked.
(Inherited from BindableBase.)
Protected methodSetPropertyT(T, T, PropertyChangedEventArgs)
Checks to see if the property is the same as the specified value. It they're different then set the value and raise an PropertyChanged event.
(Inherited from BindableBase.)
Protected methodSetPropertyT(T, T, String)
Checks to see if the property is the same as the specified value. It they're different then set the value and raise an PropertyChanged event.
(Inherited from BindableBase.)
Public methodToString (Inherited from AspectComponentBase.)
Protected methodUpdateBindingAPI
If this aspect implements IBindableItemOwner, this method performs the following for each BindableItem:
If the aspect is disabled OR the item is not part of the binding interface (see IsBindingInterface), then remove it from the binding API.
Otherwise, if the item is part of the binding interface AND the item does not already have a declared binding (see HasBindingInterface), add the item to the binding API.
Any bindable items that are added to the binding API will appear in the IO browser grid and can be further utilized for controls testing.
(Inherited from AspectComponentBase.)
Top
Events
  NameDescription
Public eventCastShadowsChanged
Occurs when the value of CastShadowsChanged changes.
Public eventIsEnabledChanged
Occurs when the value of IsEnabled changes.
(Inherited from AspectComponentBase.)
Public eventRenderableRequest
Occurs before the renderables are about to be use so that they can be configured correctly, eg before a render or an export.
Public eventUpdated
Occurs after a renderable has been updated.
Top
See Also