Exemple #1
0
 def QOCA(self, params):
     """
   QOCA Constraint Template
   NOTE: DO NOT select a POST/PRE action trigger
   Constraints will be added/removed in a logical manner by other mechanisms.
   """
     return  # <---- Remove this to use QOCA
     """ Get the high level constraint helper and solver """
     from Qoca.atom3constraints.OffsetConstraints import OffsetConstraints
     oc = OffsetConstraints(self.parent.qocaSolver)
     """
   Example constraint, see Kernel/QOCA/atom3constraints/OffsetConstraints.py
   For more types of constraints
   """
     oc.fixedWidth(self.graphObject_, self.graphObject_.sizeX)
     oc.fixedHeight(self.graphObject_, self.graphObject_.sizeY)
Exemple #2
0
 def QOCA(self, params):
    """
    QOCA Constraint Template
    NOTE: DO NOT select a POST/PRE action trigger
    Constraints will be added/removed in a logical manner by other mechanisms.
    """
    return # <---- Remove this to use QOCA
    
    """ Get the high level constraint helper and solver """
    from Qoca.atom3constraints.OffsetConstraints import OffsetConstraints
    oc = OffsetConstraints(self.parent.qocaSolver)  
    
    """
    Example constraint, see Kernel/QOCA/atom3constraints/OffsetConstraints.py
    For more types of constraints
    """
    oc.fixedWidth(self.graphObject_, self.graphObject_.sizeX)
    oc.fixedHeight(self.graphObject_, self.graphObject_.sizeY)