Home | History | Annotate | Download | only in tables

Lines Matching refs:firstPt

633 				if hasattr(compo, "firstPt"):
635 x1,y1 = allCoords[compo.firstPt]
797 # XXX Ignoring self.firstPt & self.lastpt for now: I need to implement
822 self.firstPt, self.secondPt = int(x), int(y)
829 self.firstPt, self.secondPt = int(x), int(y)
865 if hasattr(self, "firstPt"):
866 if (0 <= self.firstPt <= 255) and (0 <= self.secondPt <= 255):
867 data = data + struct.pack(">BB", self.firstPt, self.secondPt)
869 data = data + struct.pack(">HH", self.firstPt, self.secondPt)
900 if not hasattr(self, "firstPt"):
903 attrs = attrs + [("firstPt", self.firstPt), ("secondPt", self.secondPt)]
924 if "firstPt" in attrs:
925 self.firstPt = safeEval(attrs["firstPt"])