Skip to content
Snippets Groups Projects
Select Git revision
  • Sprint/2020-20
  • master default protected
  • gitkeep
  • dev protected
  • Issue/1321-pidEnquiryOverhaul
  • czepiel-devops
  • Sprint/2022-01
  • Hotfix/1911-fixFormatting
  • Sprint/2021-22
  • Issue/1743-changedLink
  • Product/1107-frontendPerformance
  • Topic/1227-frontendPerformance
  • Product/1215-gitlabCleanUp
  • Product/943-NewLogo
  • Topic/1087-NewLogo
  • Sprint/2020-19
  • Product/505-pidPage
  • Topic/1061-pidPageApp
  • v1.3.0
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.1
  • v1.1.0
  • v1.0.0
25 results

vue.config.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    plotoptions.py 795 B
    #!/usr/bin/env python3
    # -*- coding: utf-8 -*-
    """Contains the PlotOption class."""
    
    
    class PlotOptions:
        """
        Container objects which include all plot options provided by plotid.
    
        Methods
        -------
        __init__figs : figure object
            Figure that will be tagged.
        prefix : str
            Prefix that is placed before the ID.
        id_method : int
            Method that decides which method is used to generate the ID.
        rotation : int
            Rotation angle for the ID.
        position : tuple
            Relative position of the ID on the plot (x,y).
        """
    
        def __init__(self, figs, prefix, id_method, rotation, position):
    
            self.figs = figs
            self.prefix = prefix
            self.id_method = id_method
            self.rotation = rotation
            self.position = position