KiCad Pcbnew Python Scripting
Loading...
Searching...
No Matches
Public Member Functions | Properties | List of all members
pcbnew.GENERATORS Class Reference
Inheritance diagram for pcbnew.GENERATORS:
Inheritance graph
[legend]

Public Member Functions

def iterator (self)
 
def __iter__ (self)
 
def __nonzero__ (self)
 
def __bool__ (self)
 
def __len__ (self)
 
def __getslice__ (self, i, j)
 
def __setslice__ (self, *args)
 
def __delslice__ (self, i, j)
 
def __delitem__ (self, *args)
 
def __getitem__ (self, *args)
 
def __setitem__ (self, *args)
 
def pop (self)
 
def append (self, x)
 
def empty (self)
 
def size (self)
 
def swap (self, v)
 
def begin (self)
 
def end (self)
 
def rbegin (self)
 
def rend (self)
 
def clear (self)
 
def get_allocator (self)
 
def pop_back (self)
 
def erase (self, *args)
 
def __init__ (self, *args)
 
def push_back (self, x)
 
def front (self)
 
def back (self)
 
def assign (self, n, x)
 
def resize (self, *args)
 
def insert (self, *args)
 
def pop_front (self)
 
def push_front (self, x)
 

Properties

 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
 

Detailed Description

Proxy of C++ std::deque< PCB_GENERATOR * > class.

Definition at line 12184 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

def pcbnew.GENERATORS.__init__ (   self,
args 
)
    __init__(GENERATORS self) -> GENERATORS
    __init__(GENERATORS self, GENERATORS other) -> GENERATORS
    __init__(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type size) -> GENERATORS
    __init__(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type size, std::deque< PCB_GENERATOR * >::value_type value) -> GENERATORS

Definition at line 12300 of file pcbnew.py.

Here is the caller graph for this function:

Member Function Documentation

◆ __bool__()

def pcbnew.GENERATORS.__bool__ (   self)
__bool__(GENERATORS self) -> bool

Definition at line 12200 of file pcbnew.py.

◆ __delitem__()

def pcbnew.GENERATORS.__delitem__ (   self,
args 
)
    __delitem__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i)
    __delitem__(GENERATORS self, PySliceObject * slice)

Definition at line 12223 of file pcbnew.py.

Here is the caller graph for this function:

◆ __delslice__()

def pcbnew.GENERATORS.__delslice__ (   self,
  i,
  j 
)
__delslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j)

Definition at line 12219 of file pcbnew.py.

◆ __getitem__()

def pcbnew.GENERATORS.__getitem__ (   self,
args 
)
    __getitem__(GENERATORS self, PySliceObject * slice) -> GENERATORS
    __getitem__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i) -> std::deque< PCB_GENERATOR * >::value_type

Definition at line 12230 of file pcbnew.py.

Here is the caller graph for this function:

◆ __getslice__()

def pcbnew.GENERATORS.__getslice__ (   self,
  i,
  j 
)
__getslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j) -> GENERATORS

Definition at line 12208 of file pcbnew.py.

◆ __iter__()

def pcbnew.GENERATORS.__iter__ (   self)

Definition at line 12193 of file pcbnew.py.

◆ __len__()

def pcbnew.GENERATORS.__len__ (   self)
__len__(GENERATORS self) -> std::deque< PCB_GENERATOR * >::size_type

Definition at line 12204 of file pcbnew.py.

◆ __nonzero__()

def pcbnew.GENERATORS.__nonzero__ (   self)
__nonzero__(GENERATORS self) -> bool

Definition at line 12196 of file pcbnew.py.

◆ __setitem__()

def pcbnew.GENERATORS.__setitem__ (   self,
args 
)
    __setitem__(GENERATORS self, PySliceObject * slice, GENERATORS v)
    __setitem__(GENERATORS self, PySliceObject * slice)
    __setitem__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::value_type x)

Definition at line 12237 of file pcbnew.py.

Here is the caller graph for this function:

◆ __setslice__()

def pcbnew.GENERATORS.__setslice__ (   self,
args 
)
    __setslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j)
    __setslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j, GENERATORS v)

Definition at line 12212 of file pcbnew.py.

Here is the caller graph for this function:

◆ append()

def pcbnew.GENERATORS.append (   self,
  x 
)
append(GENERATORS self, std::deque< PCB_GENERATOR * >::value_type x)

Definition at line 12249 of file pcbnew.py.

◆ assign()

def pcbnew.GENERATORS.assign (   self,
  n,
  x 
)
assign(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type n, std::deque< PCB_GENERATOR * >::value_type x)

Definition at line 12321 of file pcbnew.py.

◆ back()

def pcbnew.GENERATORS.back (   self)
back(GENERATORS self) -> std::deque< PCB_GENERATOR * >::value_type

Definition at line 12317 of file pcbnew.py.

◆ begin()

def pcbnew.GENERATORS.begin (   self)
begin(GENERATORS self) -> std::deque< PCB_GENERATOR * >::iterator

Definition at line 12265 of file pcbnew.py.

◆ clear()

def pcbnew.GENERATORS.clear (   self)
clear(GENERATORS self)

Definition at line 12281 of file pcbnew.py.

◆ empty()

def pcbnew.GENERATORS.empty (   self)
empty(GENERATORS self) -> bool

Definition at line 12253 of file pcbnew.py.

◆ end()

def pcbnew.GENERATORS.end (   self)
end(GENERATORS self) -> std::deque< PCB_GENERATOR * >::iterator

Definition at line 12269 of file pcbnew.py.

◆ erase()

def pcbnew.GENERATORS.erase (   self,
args 
)
    erase(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator pos) -> std::deque< PCB_GENERATOR * >::iterator
    erase(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator first, std::deque< PCB_GENERATOR * >::iterator last) -> std::deque< PCB_GENERATOR * >::iterator

Definition at line 12293 of file pcbnew.py.

Here is the caller graph for this function:

◆ front()

def pcbnew.GENERATORS.front (   self)
front(GENERATORS self) -> std::deque< PCB_GENERATOR * >::value_type

Definition at line 12313 of file pcbnew.py.

◆ get_allocator()

def pcbnew.GENERATORS.get_allocator (   self)
get_allocator(GENERATORS self) -> std::deque< PCB_GENERATOR * >::allocator_type

Definition at line 12285 of file pcbnew.py.

◆ insert()

def pcbnew.GENERATORS.insert (   self,
args 
)
    insert(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator pos, std::deque< PCB_GENERATOR * >::value_type x) -> std::deque< PCB_GENERATOR * >::iterator
    insert(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator pos, std::deque< PCB_GENERATOR * >::size_type n, std::deque< PCB_GENERATOR * >::value_type x)

Definition at line 12332 of file pcbnew.py.

Here is the caller graph for this function:

◆ iterator()

def pcbnew.GENERATORS.iterator (   self)
iterator(GENERATORS self) -> SwigPyIterator

Definition at line 12190 of file pcbnew.py.

Here is the caller graph for this function:

◆ pop()

def pcbnew.GENERATORS.pop (   self)
pop(GENERATORS self) -> std::deque< PCB_GENERATOR * >::value_type

Definition at line 12245 of file pcbnew.py.

◆ pop_back()

def pcbnew.GENERATORS.pop_back (   self)
pop_back(GENERATORS self)

Definition at line 12289 of file pcbnew.py.

◆ pop_front()

def pcbnew.GENERATORS.pop_front (   self)
pop_front(GENERATORS self)

Definition at line 12339 of file pcbnew.py.

◆ push_back()

def pcbnew.GENERATORS.push_back (   self,
  x 
)
push_back(GENERATORS self, std::deque< PCB_GENERATOR * >::value_type x)

Definition at line 12309 of file pcbnew.py.

◆ push_front()

def pcbnew.GENERATORS.push_front (   self,
  x 
)
push_front(GENERATORS self, std::deque< PCB_GENERATOR * >::value_type x)

Definition at line 12343 of file pcbnew.py.

◆ rbegin()

def pcbnew.GENERATORS.rbegin (   self)
rbegin(GENERATORS self) -> std::deque< PCB_GENERATOR * >::reverse_iterator

Definition at line 12273 of file pcbnew.py.

◆ rend()

def pcbnew.GENERATORS.rend (   self)
rend(GENERATORS self) -> std::deque< PCB_GENERATOR * >::reverse_iterator

Definition at line 12277 of file pcbnew.py.

◆ resize()

def pcbnew.GENERATORS.resize (   self,
args 
)
    resize(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type new_size)
    resize(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type new_size, std::deque< PCB_GENERATOR * >::value_type x)

Definition at line 12325 of file pcbnew.py.

Here is the caller graph for this function:

◆ size()

def pcbnew.GENERATORS.size (   self)
size(GENERATORS self) -> std::deque< PCB_GENERATOR * >::size_type

Definition at line 12257 of file pcbnew.py.

◆ swap()

def pcbnew.GENERATORS.swap (   self,
  v 
)
swap(GENERATORS self, GENERATORS v)

Definition at line 12261 of file pcbnew.py.

Property Documentation

◆ thisown

pcbnew.GENERATORS.thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
static

Definition at line 12187 of file pcbnew.py.


The documentation for this class was generated from the following file: