Lines Matching refs:dist
432 int dist() const { return m_dist; } in dist() function
608 int s1 = m_di.dist() / m_lp.len; in step_hor()
617 int dist; in step_hor() local
638 while((dist = m_dist_pos[dy]) - s1 <= m_width) in step_hor()
646 if(m_lp.inc > 0) dist = -dist; in step_hor()
647 m_ren.pixel(p1, dist_pict, s2 - dist); in step_hor()
658 while((dist = m_dist_pos[dy]) + s1 <= m_width) in step_hor()
667 if(m_lp.inc > 0) dist = -dist; in step_hor()
668 m_ren.pixel(p0, dist_pict, s2 + dist); in step_hor()
694 int s1 = m_di.dist() / m_lp.len; in step_ver()
702 int dist; in step_ver() local
724 while((dist = m_dist_pos[dx]) - s1 <= m_width) in step_ver()
732 if(m_lp.inc > 0) dist = -dist; in step_ver()
733 m_ren.pixel(p1, dist_pict, s2 + dist); in step_ver()
744 while((dist = m_dist_pos[dx]) + s1 <= m_width) in step_ver()
753 if(m_lp.inc > 0) dist = -dist; in step_ver()
754 m_ren.pixel(p0, dist_pict, s2 - dist); in step_ver()