Пример #1
0
RS_Vector RS_Insert::getNearestRef(const RS_Vector& coord,
									 double* dist) const{

        return getRefPoints().getClosest(coord, dist);
}
Пример #2
0
RS_Vector RS_Entity::getNearestRef(const RS_Vector& coord,
								   double* dist) const{
	RS_VectorSolutions const&& s = getRefPoints();

	return s.getClosest(coord, dist);
}