CADability dotNET
A GeoObject which always appears in the same size in a view. It is not scaled when the view is zoomed. These objects can not be kept in displaylists and hence have a poor performance when used in high numbers. The objects rotate with the view when viewed from different directions. The Location specifies the position of the origin (GeoPoint(0,0,0)) of the referenced GeoObject. Usually you would center the referenced object at the origin so this object will be centered at the Location. In contrast to the Icon object, which always shows its face to the viewer and is much faster, because it can be kept in the display list. Since this object does not have a well defined size in world coordinates, it is only pickable or selectable at its insertion point. The size of the object is assumed in device units (pixels) The Layer of this object will be taken into account for the objects visibility, not the layer of the referenced object.

Remarks

The use of this object is not recommended because it has a poor performance in both display and selection. Consider using Icon instead.

Namespace: CADability.GeoObject
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
[SerializableAttribute]
public class UnscaledGeoObject : IGeoObjectImpl, 
	ISerializable
Visual Basic
<SerializableAttribute> _
Public Class UnscaledGeoObject _
	Inherits IGeoObjectImpl _
	Implements ISerializable
Visual C++
[SerializableAttribute]
public ref class UnscaledGeoObject : public IGeoObjectImpl, 
	ISerializable

Inheritance Hierarchy

System..::..Object
  CADability.GeoObject..::..IGeoObjectImpl
    CADability.GeoObject..::..UnscaledGeoObject

See Also