Searched refs:Point (Results 1 - 6 of 6) sorted by relevance

/gem5/util/minorview/
H A Dpoint.py38 class Point(object): class in inherits:object
45 return Point(self.x + rhs.x, self.y + rhs.y)
48 return Point(self.x - rhs.x, self.y - rhs.y)
51 return Point(self.x * rhs.x, self.y * rhs.y)
54 return Point(float(self.x) / rhs.x, float(self.y) / rhs.y)
57 return Point(self.x * factor, self.y * factor)
63 return "Point(%f,%f)" % (self.x, self.y)
66 return "Point(%f,%f)" % (self.x, self.y)
H A Dblobs.py51 from point import Point
129 top left corner at Point(2.0 * unit, 2.0 * unit)"""
137 local_arc(top_left + Point(size.x + unit * 2.0, unit * 2.0), -0.5, 0.0)
139 local_arc(top_left + Point(size.x + unit * 2.0, size.y + unit * 2.0),
142 local_arc(top_left + Point(unit * 2.0, size.y + unit * 2.0), 0.5, 1.0)
173 def __init__(self, picChar, unit, topLeft, colour, size = Point(1,1)):
196 def __init__(self, picChar, unit, topLeft=Point(0,0),
198 size=Point(1,1)):
235 size = Point(*self.size.to_pair())
245 cr.translate(*(size - Point(
[all...]
H A Dview.py45 from point import Point
57 self.blobSize = Point(45.0, 45.0)
58 self.pitch = Point(60.0, 60.0)
59 self.origin = Point(50.0, 50.0)
67 self.masterScale = Point(1.0,1.0)
179 (self.model.picSize + Point(1.0,1.0)))
367 cr.translate(*(Point(0.0,0.0) - self.view.origin).to_pair())
368 cr.scale(*(Point(1.0,1.0) / self.view.masterScale).to_pair())
394 gap_step = Point(1.0, 0.0).scale(column_gap)
397 text_step = Point(0.
[all...]
H A Dmodel.py41 from point import Point
547 self.picSize = Point(20,10)
860 self.picSize = Point(pic_width, pic_height)
892 hunt_x = skip_same_char(start, Point(1,0))
893 hunt_y = skip_same_char(start, Point(0,1))
894 off_bottom_right = (hunt_x * Point(1,0)) + (hunt_y * Point(0,1))
899 return Point(0, point.y + 1)
906 arrow_point += Point(0, 1)
910 arrow_point += Point(
[all...]
/gem5/util/
H A Dminorview.py54 from minorview.point import Point
/gem5/ext/systemc/src/sysc/qt/md/
H A Dksr1.s191 # Point of Restore:

Completed in 8 milliseconds