Esempio n. 1
0
    def _all_draw_planets(self):
        """Return a list of all points to draw (incl. midpoints).
		
		:rtype: PlanetDataList
		"""
        ret = PlanetDataList()
        ret.extend(self._planets)
        if self._filter._draw_midp:
            ret.extend(self._midp_aspects.get_midpoints())
        return ret
Esempio n. 2
0
	def _all_draw_planets(self):
		"""Return a list of all points to draw (incl. midpoints).
		
		:rtype: PlanetDataList
		"""
		ret = PlanetDataList()
		ret.extend(self._planets)
		if self._filter._draw_midp:
			ret.extend(self._midp_aspects.get_midpoints())
		return ret
Esempio n. 3
0
    def _all_draw_planets(self, idx=0):
        """Get all planets and midpoints to draw when comparing charts.
		
		:type idx: int
		:rtype: PlanetDataList
		"""
        ret = PlanetDataList()
        if idx == 0:
            ret.extend(self[0]._planets)
            ret.extend(self._intermidp1.get_midpoints())
        else:
            ret.extend(self[1]._planets)
            ret.extend(self._intermidp2.get_midpoints())
        return ret
Esempio n. 4
0
	def _all_draw_planets(self, idx=0):
		"""Get all planets and midpoints to draw when comparing charts.
		
		:type idx: int
		:rtype: PlanetDataList
		"""
		ret = PlanetDataList()
		if idx == 0:
			ret.extend(self[0]._planets)
			ret.extend(self._intermidp1.get_midpoints())
		else:
			ret.extend(self[1]._planets)
			ret.extend(self._intermidp2.get_midpoints())
		return ret