Click or drag to resize

IGH_GeometricGoo Interface

Base interface for all Data inside Grasshoper that could pass for Geometry

Namespace:  Grasshopper.Kernel.Types
Assembly:  Grasshopper (in Grasshopper.dll)
Syntax
public interface IGH_GeometricGoo : IGH_Goo

The IGH_GeometricGoo type exposes the following members.

Properties
  NameDescription
Public propertyBoundingbox
Gets the (cached) boundingbox for this geometry. Not all geometry types cache boundingbox results.
Public propertyIsGeometryLoaded
Gets a value indicating whether or not this geometry is currently loaded (assuming it is referenced). Not all IGH_GeometricGoo implementations support referenced geometry.
Public propertyIsReferencedGeometry
Gets a value indicating whether or not this geometry is referenced. Not all IGH_GeometricGoo implementations support referenced geometry.
Public propertyIsValid
Gets a value indicating whether or not the current value is valid.
(Inherited from IGH_Goo.)
Public propertyIsValidWhyNot
Gets a string describing the state of "invalidness". If the instance is valid, then this property should return Nothing or String.Empty.
(Inherited from IGH_Goo.)
Public propertyReferenceID
Gets or sets the Guid of the object that is referenced. Not all IGH_GeometricGoo implementations support referenced geometry.
Public propertyTypeDescription
Gets a description of the type of the implementation.
(Inherited from IGH_Goo.)
Public propertyTypeName
Gets the name of the type of the implementation.
(Inherited from IGH_Goo.)
Top
Methods
  NameDescription
Public methodCastFrom
Attempt a cast from generic object
(Inherited from IGH_Goo.)
Public methodCastToT
Attempt a cast to type T
(Inherited from IGH_Goo.)
Public methodClearCaches
Clears all caches. Typically if the geometry is referenced, this will erase the local copy.
Public methodDuplicate
Make a complete duplicate of this instance. No shallow copies.
(Inherited from IGH_Goo.)
Public methodDuplicateGeometry
Make a complete duplicate of this geometry. No shallow copies.
Public methodEmitProxy
Create a new proxy for this instance. Return Null if this class does not support proxies.
(Inherited from IGH_Goo.)
Public methodGetBoundingBox
Compute an aligned boundingbox.
Public methodLoadGeometry
If the geometry is referenced and currently unloaded, forces loading of the geometry. Not all IGH_GeometricGoo implementations support referenced geometry.
Public methodLoadGeometry(RhinoDoc)
If the geometry is referenced and currently unloaded, forces loading of the geometry. Not all IGH_GeometricGoo implementations support referenced geometry.
Public methodMorph
Morph the object or a deformable representation of the object.
Public methodScriptVariable
This function will be called when the local IGH_Goo instance disapears into a user Script. This would be an excellent place to cast your IGH_Goo type to a simple data type.
(Inherited from IGH_Goo.)
Public methodToString
Creates a string description of the current instance value
(Inherited from IGH_Goo.)
Public methodTransform
Transforms the object or a deformable representation of the object.
Top
See Also