GraphObject

class compas_blender.scene.GraphObject[source]

Bases: BlenderSceneObject, GraphObject

Scene object for drawing graph data structures in Blender.

Parameters:
node_uint, optional

Number of segments in the U direction of the node spheres. Default is 16.

node_vint, optional

Number of segments in the V direction of the node spheres. Default is 16.

**kwargsdict, optional

Additional keyword arguments. For more info, see compas_blender.scene.BlenderSceneObject and compas.scene.GraphObject.

Attributes:
node_uint

Number of segments in the U direction of the node spheres.

node_vint

Number of segments in the V direction of the node spheres.

nodeobjectslist[bpy.types.Object]

List of Blender objects representing the nodes.

edgeobjectslist[bpy.types.Object]

List of Blender objects representing the edges.

Methods

clear_edges

Clear all objects contained in the edge collection.

clear_nodes

Clear all objects contained in the node collection.

draw

Draw the graph.

draw_edges

Draw a selection of edges.

draw_nodes

Draw a selection of nodes.

Inherited Methods

ToString

Converts the instance to a string.

add

Add a child item to the scene object.

add_object_to_collection

Add an object to a collection.

clear

Clear the nodes and the edges of the graph.

clear_collection

Clear the objects in a collection.

copy

Make an independent copy of the data object.

create_collection

Create a collection with the given name.

create_object

Add an object to the Blender scene.

delete_collection

Delete a collection.

from_json

Construct an object of this type from a JSON file.

from_jsonstring

Construct an object of this type from a JSON string.

remove

Remove a child node from this node.

set_object_color

Set the color of a Blender object.

set_object_tranformation

Set the transformation of a Blender object.

sha256

Compute a hash of the data for comparison during version control using the sha256 algorithm.

to_json

Convert an object to its native data representation and save it to a JSON file.

to_jsonstring

Convert an object to its native data representation and save it to a JSON string.

traverse

Traverse the tree from this node.

update_object

Update an object in the Blender scene.

validate_data

Validate the data against the object's data schema.