52. plugins.objects — Selection of objects from the global dictionary.

This is a support module for other pyFormex plugins.

52.1. Classes defined in module plugins.objects

class plugins.objects.Objects(clas=None, like=None, filter=None, namelist=[])[source]

A selection of objects from the pyFormex Globals().

The class provides facilities to filter the global objects by their type and select one or more objects by their name(s). The values of these objects can be changed and the changes can be undone.

object_type()[source]

Return the type of objects in this selection.

set(names)[source]

Set the selection to a list of names.

namelist can be a single object name or a list of names. This will also store the current values of the variables.

append(name, value=None)[source]

Add a name,value to a selection.

If no value is given, its current value is used. If a value is given, it is exported.

clear()[source]

Clear the selection.

listAll()[source]

Return a list with all selectable objects.

This lists all the global names in pyformex.PF that match the class and/or filter (if specified).

remember(copy=False)[source]

Remember the current values of the variables in selection.

If copy==True, the values are copied, so that the variables’ current values can be changed inplace without affecting the remembered values.

changeValues(newvalues)[source]

Replace the current values of selection by new ones.

The old values are stored locally, to enable undo operations.

This is only needed to change the values of objects that can not be changed inplace!

undoChanges()[source]

Undo the last changes of the values.

check(single=False, warn=True)[source]

Check that we have a current selection.

Returns the list of Objects corresponding to the current selection. If single==True, the selection should hold exactly one Object name and a single Object instance is returned. If there is no selection, or more than one in case of single==True, an error message is displayed and None is returned

odict()[source]

Return the currently selected items as a dictionary.

Returns an OrderedDict with the currently selected objects in the order of the selection.names.

ask(mode='multi')[source]

Show the names of known objects and let the user select one or more.

mode can be set to’single’ to select a single item. Return a list with the selected names, possibly empty (if nothing was selected by the user), or None if there is nothing to choose from. This also sets the current selection to the selected names, unless the return value is None, in which case the selection remains unchanged.

ask1()[source]

Select a single object from the list.

Returns the object, not its name!

forget()[source]

Remove the selection from the globals.

keep()[source]

Remove everything except the selection from the globals.

printval()[source]

Print the selection.

printbbox()[source]

Print the bbox of the current selection.

writeToFile(filename)[source]

Write objects to a geometry file.

readFromFile(filename)[source]

Read objects from a geometry file.

class plugins.objects.DrawableObjects(**kargs)[source]

A selection of drawable objects from the globals().

This is a subclass of Objects. The constructor has the same arguments as the Objects class, plus the following:

  • annotations: a set of functions that draw annotations of the objects. Each function should take an object name as argument, and draw the requested annotation for the named object. If the object does not have the annotation, it should be silently ignored. Default annotation functions available are:

    • draw_object_name
    • draw_elem_numbers
    • draw_nodes
    • draw_node_numbers
    • draw_bbox

    No annotation functions are activated by default.

ask(mode='multi')[source]

Interactively sets the current selection.

drawChanges()[source]

Draws old and new version of a Formex with different colors.

old and new can be a either Formex instances or names or lists thereof. old are drawn in yellow, new in the current color.

undoChanges()[source]

Undo the last changes of the values.

toggleAnnotation(f, onoff=None)[source]

Toggle the display of an annotation On or Off.

If given, onoff is True or False. If no onoff is given, this works as a toggle.

drawAnnotation(f)[source]

Draw some annotation for the current selection.

removeAnnotation(f)[source]

Remove the annotation f.

editAnnotations(ontop=None)[source]

Edit the annotation properties

Currently only changes the ontop attribute for all drawn annotations. Values: True, False or ‘’ (toggle). Other values have no effect.

hasAnnotation(f)[source]

Return the status of annotation f

setProp(prop=None)[source]

Set the property of the current selection.

prop should be a single integer value or None. If None is given, a value will be asked from the user. If a negative value is given, the property is removed. If a selected object does not have a setProp method, it is ignored.

delProp()[source]

Delete the property of the current selection.

This well reset the prop attribute of all selected objects to None.

52.2. Functions defined in module plugins.objects

plugins.objects.draw_object_name(n)[source]

Draw the name of an object at its center.

plugins.objects.draw_elem_numbers(n)[source]

Draw the numbers of an object’s elements.

plugins.objects.draw_nodes(n)[source]

Draw the nodes of an object.

plugins.objects.draw_node_numbers(n)[source]

Draw the numbers of an object’s nodes.

plugins.objects.draw_free_edges(n)[source]

Draw the feature edges of an object.

plugins.objects.draw_bbox(n)[source]

Draw the bbox of an object.