Notation used in Ruby API documentation
Module: db
Description: EdgePairs (a collection of edge pairs)
Edge pairs are used mainly in the context of the DRC functions (width_check, space_check etc.) of Region and Edges. A single edge pair represents two edges participating in a DRC violation. In the two-layer checks (inside, overlap) The first edge represents an edge from the first layer and the second edge an edge from the second layer. For single-layer checks (width, space) the order of the edges is arbitrary.
This class has been introduced in version 0.23.
new EdgePairs ptr | new | Default constructor | |
new EdgePairs ptr | new | (EdgePair[] array) | Constructor from an edge pair array |
new EdgePairs ptr | new | (const EdgePair edge_pair) | Constructor from a single edge pair object |
new EdgePairs ptr | new | (const Shapes shapes) | Shapes constructor |
new EdgePairs ptr | new | (const RecursiveShapeIterator shape_iterator) | Constructor from a hierarchical shape set |
new EdgePairs ptr | new | (const RecursiveShapeIterator shape_iterator, const ICplxTrans trans) | Constructor from a hierarchical shape set with a transformation |
new EdgePairs ptr | new | (const RecursiveShapeIterator shape_iterator, DeepShapeStore dss) | Creates a hierarchical edge pair collection from an original layer |
new EdgePairs ptr | new | (const RecursiveShapeIterator shape_iterator, DeepShapeStore dss, const ICplxTrans trans) | Creates a hierarchical edge pair collection from an original layer with a transformation |
[const] | EdgePairs | + | (const EdgePairs other) | Returns the combined edge pair collection of self and the other one |
EdgePairs | += | (const EdgePairs other) | Adds the edge pairs of the other edge pair collection to self | |
[const] | const EdgePair ptr | [] | (unsigned long n) | Returns the nth edge pair |
void | _create | Ensures the C++ object is created | ||
void | _destroy | Explicitly destroys the object | ||
[const] | bool | _destroyed? | Returns a value indicating whether the object was already destroyed | |
[const] | bool | _is_const_object? | Returns a value indicating whether the reference is a const reference | |
void | _manage | Marks the object as managed by the script side. | ||
void | _unmanage | Marks the object as no longer owned by the script side. | ||
void | assign | (const EdgePairs other) | Assigns another object to self | |
[const] | Box | bbox | Return the bounding box of the edge pair collection | |
void | clear | Clears the edge pair collection | ||
[const] | unsigned long | data_id | Returns the data ID (a unique identifier for the underlying data storage) | |
void | disable_progress | Disable progress reporting | ||
[const] | new EdgePairs ptr | dup | Creates a copy of self | |
[const,iter] | EdgePair | each | Returns each edge pair of the edge pair collection | |
[const] | Edges | edges | Decomposes the edge pairs into single edges | |
void | enable_progress | (string label) | Enable progress reporting | |
[const] | Region | extents | Returns a region with the bounding boxes of the edge pairs | |
[const] | Region | extents | (int d) | Returns a region with the enlarged bounding boxes of the edge pairs |
[const] | Region | extents | (int dx, int dy) | Returns a region with the enlarged bounding boxes of the edge pairs |
[const] | Edges | first_edges | Returns the first one of all edges | |
void | flatten | Explicitly flattens an edge pair collection | ||
[const] | bool | has_valid_edge_pairs? | Returns true if the edge pair collection is flat and individual edge pairs can be accessed randomly | |
void | insert | (const Edge first, const Edge second) | Inserts an edge pair into the collection | |
void | insert | (const EdgePair edge_pair) | Inserts an edge pair into the collection | |
void | insert | (const EdgePairs edge_pairs) | Inserts all edge pairs from the other edge pair collection into this edge pair collection | |
[const] | void | insert_into | (Layout ptr layout, unsigned int cell_index, unsigned int layer) | Inserts this edge pairs into the given layout, below the given cell and into the given layer. |
[const] | void | insert_into_as_polygons | (Layout ptr layout, unsigned int cell_index, unsigned int layer, int e) | Inserts this edge pairs into the given layout, below the given cell and into the given layer. |
[const] | bool | is_deep? | Returns true if the edge pair collection is a deep (hierarchical) one | |
[const] | bool | is_empty? | Returns true if the collection is empty | |
EdgePairs | move | (const Vector p) | Moves the edge pair collection | |
EdgePairs | move | (int x, int y) | Moves the edge pair collection | |
[const] | EdgePairs | moved | (const Vector p) | Returns the moved edge pair collection (does not modify self) |
[const] | EdgePairs | moved | (int x, int y) | Returns the moved edge pair collection (does not modify self) |
[const] | Region | polygons | Converts the edge pairs to polygons | |
[const] | Region | polygons | (int e) | Converts the edge pairs to polygons |
[const] | Edges | second_edges | Returns the second one of all edges | |
[const] | unsigned long | size | Returns the number of edge pairs in this collection | |
void | swap | (EdgePairs other) | Swap the contents of this collection with the contents of another collection | |
[const] | string | to_s | Converts the edge pair collection to a string | |
[const] | string | to_s | (unsigned long max_count) | Converts the edge pair collection to a string |
EdgePairs | transform | (const Trans t) | Transform the edge pair collection (modifies self) | |
EdgePairs | transform | (const ICplxTrans t) | Transform the edge pair collection with a complex transformation (modifies self) | |
[const] | EdgePairs | transformed | (const Trans t) | Transform the edge pair collection |
[const] | EdgePairs | transformed | (const ICplxTrans t) | Transform the edge pair collection with a complex transformation |
void | create | Use of this method is deprecated. Use _create instead | ||
void | destroy | Use of this method is deprecated. Use _destroy instead | ||
[const] | bool | destroyed? | Use of this method is deprecated. Use _destroyed? instead | |
[const] | bool | is_const_object? | Use of this method is deprecated. Use _is_const_object? instead | |
EdgePairs | transform_icplx | (const ICplxTrans t) | Use of this method is deprecated. Use transform instead | |
[const] | EdgePairs | transformed_icplx | (const ICplxTrans t) | Use of this method is deprecated. Use transformed instead |
+ | Signature: [const] EdgePairs + (const EdgePairs other) Description: Returns the combined edge pair collection of self and the other one
This operator adds the edge pairs of the other collection to self and returns a new combined set. This method has been introduced in version 0.24. | |||||
+= | Signature: EdgePairs += (const EdgePairs other) Description: Adds the edge pairs of the other edge pair collection to self
This operator adds the edge pairs of the other collection to self. This method has been introduced in version 0.24. | |||||
[] | Signature: [const] const EdgePair ptr [] (unsigned long n) Description: Returns the nth edge pair This method returns nil if the index is out of range. It is available for flat edge pairs only - i.e. those for which has_valid_edge_pairs? is true. Use flatten to explicitly flatten an edge pair collection. The each iterator is the more general approach to access the edge pairs. | |||||
_create | Signature: void _create Description: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. | |||||
_destroy | Signature: void _destroy Description: Explicitly destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. | |||||
_destroyed? | Signature: [const] bool _destroyed? Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. | |||||
_is_const_object? | Signature: [const] bool _is_const_object? Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. | |||||
_manage | Signature: void _manage Description: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. | |||||
_unmanage | Signature: void _unmanage Description: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. | |||||
assign | Signature: void assign (const EdgePairs other) Description: Assigns another object to self | |||||
bbox | Signature: [const] Box bbox Description: Return the bounding box of the edge pair collection The bounding box is the box enclosing all points of all edge pairs. | |||||
clear | Signature: void clear Description: Clears the edge pair collection | |||||
create | Signature: void create Description: Ensures the C++ object is created Use of this method is deprecated. Use _create instead | |||||
data_id | Signature: [const] unsigned long data_id Description: Returns the data ID (a unique identifier for the underlying data storage) This method has been added in version 0.26. | |||||
destroy | Signature: void destroy Description: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead | |||||
destroyed? | Signature: [const] bool destroyed? Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead | |||||
disable_progress | Signature: void disable_progress Description: Disable progress reporting Calling this method will disable progress reporting. See enable_progress. | |||||
dup | Signature: [const] new EdgePairs ptr dup Description: Creates a copy of self | |||||
each | Signature: [const,iter] EdgePair each Description: Returns each edge pair of the edge pair collection Python specific notes: | |||||
edges | Signature: [const] Edges edges Description: Decomposes the edge pairs into single edges
| |||||
enable_progress | Signature: void enable_progress (string label) Description: Enable progress reporting After calling this method, the edge pair collection will report the progress through a progress bar while expensive operations are running. The label is a text which is put in front of the progress bar. Using a progress bar will imply a performance penalty of a few percent typically. | |||||
extents | Signature: [const] Region extents Description: Returns a region with the bounding boxes of the edge pairs This method will return a region consisting of the bounding boxes of the edge pairs. The boxes will not be merged, so it is possible to determine overlaps of these boxes for example. | |||||
Signature: [const] Region extents (int d) Description: Returns a region with the enlarged bounding boxes of the edge pairs This method will return a region consisting of the bounding boxes of the edge pairs enlarged by the given distance d. The enlargement is specified per edge, i.e the width and height will be increased by 2*d. The boxes will not be merged, so it is possible to determine overlaps of these boxes for example. | ||||||
Signature: [const] Region extents (int dx, int dy) Description: Returns a region with the enlarged bounding boxes of the edge pairs This method will return a region consisting of the bounding boxes of the edge pairs enlarged by the given distance dx in x direction and dy in y direction. The enlargement is specified per edge, i.e the width will be increased by 2*dx. The boxes will not be merged, so it is possible to determine overlaps of these boxes for example. | ||||||
first_edges | Signature: [const] Edges first_edges Description: Returns the first one of all edges
| |||||
flatten | Signature: void flatten Description: Explicitly flattens an edge pair collection If the collection is already flat (i.e. has_valid_edge_pairs? returns true), this method will not change the collection. This method has been introduced in version 0.26. | |||||
has_valid_edge_pairs? | Signature: [const] bool has_valid_edge_pairs? Description: Returns true if the edge pair collection is flat and individual edge pairs can be accessed randomly This method has been introduced in version 0.26. | |||||
insert | Signature: void insert (const Edge first, const Edge second) Description: Inserts an edge pair into the collection | |||||
Signature: void insert (const EdgePair edge_pair) Description: Inserts an edge pair into the collection | ||||||
Signature: void insert (const EdgePairs edge_pairs) Description: Inserts all edge pairs from the other edge pair collection into this edge pair collection This method has been introduced in version 0.25. | ||||||
insert_into | Signature: [const] void insert_into (Layout ptr layout, unsigned int cell_index, unsigned int layer) Description: Inserts this edge pairs into the given layout, below the given cell and into the given layer. If the edge pair collection is a hierarchical one, a suitable hierarchy will be built below the top cell or and existing hierarchy will be reused. This method has been introduced in version 0.26. | |||||
insert_into_as_polygons | Signature: [const] void insert_into_as_polygons (Layout ptr layout, unsigned int cell_index, unsigned int layer, int e) Description: Inserts this edge pairs into the given layout, below the given cell and into the given layer. If the edge pair collection is a hierarchical one, a suitable hierarchy will be built below the top cell or and existing hierarchy will be reused. The edge pairs will be converted to polygons with the enlargement value given be 'e'. This method has been introduced in version 0.26. | |||||
is_const_object? | Signature: [const] bool is_const_object? Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead | |||||
is_deep? | Signature: [const] bool is_deep? Description: Returns true if the edge pair collection is a deep (hierarchical) one This method has been added in version 0.26. | |||||
is_empty? | Signature: [const] bool is_empty? Description: Returns true if the collection is empty | |||||
move | Signature: EdgePairs move (const Vector p) Description: Moves the edge pair collection
Moves the edge pairs by the given offset and returns the moved edge pair collection. The edge pair collection is overwritten. Starting with version 0.25 the displacement is of vector type. | |||||
Signature: EdgePairs move (int x, int y) Description: Moves the edge pair collection
Moves the edge pairs by the given offset and returns the moved edge pairs. The edge pair collection is overwritten. | ||||||
moved | Signature: [const] EdgePairs moved (const Vector p) Description: Returns the moved edge pair collection (does not modify self)
Moves the edge pairs by the given offset and returns the moved edge pairs. The edge pair collection is not modified. Starting with version 0.25 the displacement is of vector type. | |||||
Signature: [const] EdgePairs moved (int x, int y) Description: Returns the moved edge pair collection (does not modify self)
Moves the edge pairs by the given offset and returns the moved edge pairs. The edge pair collection is not modified. | ||||||
new | Signature: [static] new EdgePairs ptr new Description: Default constructor This constructor creates an empty edge pair collection. Python specific notes: | |||||
Signature: [static] new EdgePairs ptr new (EdgePair[] array) Description: Constructor from an edge pair array This constructor creates an edge pair collection from an array of EdgePair objects. This constructor has been introduced in version 0.26. Python specific notes: | ||||||
Signature: [static] new EdgePairs ptr new (const EdgePair edge_pair) Description: Constructor from a single edge pair object This constructor creates an edge pair collection with a single edge pair. This constructor has been introduced in version 0.26. Python specific notes: | ||||||
Signature: [static] new EdgePairs ptr new (const Shapes shapes) Description: Shapes constructor This constructor creates an edge pair collection from a Shapes collection. This constructor has been introduced in version 0.26. Python specific notes: | ||||||
Signature: [static] new EdgePairs ptr new (const RecursiveShapeIterator shape_iterator) Description: Constructor from a hierarchical shape set This constructor creates an edge pair collection from the shapes delivered by the given recursive shape iterator. Only edge pairs are taken from the shape set and other shapes are ignored. This method allows feeding the edge pair collection from a hierarchy of cells. Edge pairs in layout objects are somewhat special as most formats don't support reading or writing of edge pairs. Still they are useful objects and can be created and manipulated inside layouts. layout = ... # a layout cell = ... # the index of the initial cell layer = ... # the index of the layer from where to take the shapes from r = RBA::EdgePairs::new(layout.begin_shapes(cell, layer)) This constructor has been introduced in version 0.26. Python specific notes: | ||||||
Signature: [static] new EdgePairs ptr new (const RecursiveShapeIterator shape_iterator, const ICplxTrans trans) Description: Constructor from a hierarchical shape set with a transformation This constructor creates an edge pair collection from the shapes delivered by the given recursive shape iterator. Only edge pairs are taken from the shape set and other shapes are ignored. The given transformation is applied to each edge pair taken. This method allows feeding the edge pair collection from a hierarchy of cells. The transformation is useful to scale to a specific database unit for example. Edge pairs in layout objects are somewhat special as most formats don't support reading or writing of edge pairs. Still they are useful objects and can be created and manipulated inside layouts. layout = ... # a layout cell = ... # the index of the initial cell layer = ... # the index of the layer from where to take the shapes from dbu = 0.1 # the target database unit r = RBA::EdgePairs::new(layout.begin_shapes(cell, layer), RBA::ICplxTrans::new(layout.dbu / dbu)) This constructor has been introduced in version 0.26. Python specific notes: | ||||||
Signature: [static] new EdgePairs ptr new (const RecursiveShapeIterator shape_iterator, DeepShapeStore dss) Description: Creates a hierarchical edge pair collection from an original layer This constructor creates an edge pair collection from the shapes delivered by the given recursive shape iterator. This version will create a hierarchical edge pair collection which supports hierarchical operations. Edge pairs in layout objects are somewhat special as most formats don't support reading or writing of edge pairs. Still they are useful objects and can be created and manipulated inside layouts. dss = RBA::DeepShapeStore::new layout = ... # a layout cell = ... # the index of the initial cell layer = ... # the index of the layer from where to take the shapes from r = RBA::EdgePairs::new(layout.begin_shapes(cell, layer)) This constructor has been introduced in version 0.26. Python specific notes: | ||||||
Signature: [static] new EdgePairs ptr new (const RecursiveShapeIterator shape_iterator, DeepShapeStore dss, const ICplxTrans trans) Description: Creates a hierarchical edge pair collection from an original layer with a transformation This constructor creates an edge pair collection from the shapes delivered by the given recursive shape iterator. This version will create a hierarchical edge pair collection which supports hierarchical operations. The transformation is useful to scale to a specific database unit for example. Edge pairs in layout objects are somewhat special as most formats don't support reading or writing of edge pairs. Still they are useful objects and can be created and manipulated inside layouts. dss = RBA::DeepShapeStore::new layout = ... # a layout cell = ... # the index of the initial cell layer = ... # the index of the layer from where to take the shapes from dbu = 0.1 # the target database unit r = RBA::EdgePairs::new(layout.begin_shapes(cell, layer), RBA::ICplxTrans::new(layout.dbu / dbu)) This constructor has been introduced in version 0.26. Python specific notes: | ||||||
polygons | Signature: [const] Region polygons Description: Converts the edge pairs to polygons This method creates polygons from the edge pairs. Each polygon will be a triangle or quadrangle which connects the start and end points of the edges forming the edge pair. | |||||
Signature: [const] Region polygons (int e) Description: Converts the edge pairs to polygons This method creates polygons from the edge pairs. Each polygon will be a triangle or quadrangle which connects the start and end points of the edges forming the edge pair. This version allows one to specify an enlargement which is applied to the edges. The length of the edges is modified by applying the enlargement and the edges are shifted by the enlargement. By specifying an enlargement it is possible to give edge pairs an area which otherwise would not have one (coincident edges, two point-like edges). | ||||||
second_edges | Signature: [const] Edges second_edges Description: Returns the second one of all edges
| |||||
size | Signature: [const] unsigned long size Description: Returns the number of edge pairs in this collection Python specific notes: | |||||
swap | Signature: void swap (EdgePairs other) Description: Swap the contents of this collection with the contents of another collection This method is useful to avoid excessive memory allocation in some cases. For managed memory languages such as Ruby, those cases will be rare. | |||||
to_s | Signature: [const] string to_s Description: Converts the edge pair collection to a string The length of the output is limited to 20 edge pairs to avoid giant strings on large regions. For full output use "to_s" with a maximum count parameter. Python specific notes: | |||||
Signature: [const] string to_s (unsigned long max_count) Description: Converts the edge pair collection to a string This version allows specification of the maximum number of edge pairs contained in the string. Python specific notes: | ||||||
transform | Signature: EdgePairs transform (const Trans t) Description: Transform the edge pair collection (modifies self)
Transforms the edge pair collection with the given transformation. This version modifies the edge pair collection and returns a reference to self. | |||||
Signature: EdgePairs transform (const ICplxTrans t) Description: Transform the edge pair collection with a complex transformation (modifies self)
Transforms the edge pair collection with the given transformation. This version modifies the edge pair collection and returns a reference to self. | ||||||
transform_icplx | Signature: EdgePairs transform_icplx (const ICplxTrans t) Description: Transform the edge pair collection with a complex transformation (modifies self)
Use of this method is deprecated. Use transform instead | |||||
transformed | Signature: [const] EdgePairs transformed (const Trans t) Description: Transform the edge pair collection
Transforms the edge pairs with the given transformation. Does not modify the edge pair collection but returns the transformed edge pairs. | |||||
Signature: [const] EdgePairs transformed (const ICplxTrans t) Description: Transform the edge pair collection with a complex transformation
Transforms the edge pairs with the given complex transformation. Does not modify the edge pair collection but returns the transformed edge pairs. | ||||||
transformed_icplx | Signature: [const] EdgePairs transformed_icplx (const ICplxTrans t) Description: Transform the edge pair collection with a complex transformation
Use of this method is deprecated. Use transformed instead |