Home
last modified time | relevance | path

Searched refs:text_transformation_matrix (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/plotutils/plotutils-2.6/libplot/
H A Dc_text.c50 double text_transformation_matrix[6]; in _pl_c_paint_text_string() local
132 text_transformation_matrix); in _pl_c_paint_text_string()
140 double base_x = text_transformation_matrix[0]; in _pl_c_paint_text_string()
141 double base_y = text_transformation_matrix[1]; in _pl_c_paint_text_string()
142 double up_x = text_transformation_matrix[2]; in _pl_c_paint_text_string()
143 double up_y = text_transformation_matrix[3]; in _pl_c_paint_text_string()
203 up_vector_x = user_cap_height * text_transformation_matrix[2]; in _pl_c_paint_text_string()
204 up_vector_y = user_cap_height * text_transformation_matrix[3]; in _pl_c_paint_text_string()
388 base_vector_x = width * text_transformation_matrix[0]; in _pl_c_paint_text_string()
389 base_vector_y = width * text_transformation_matrix[1]; in _pl_c_paint_text_string()
H A Da_text.c51 double text_transformation_matrix[6]; in _pl_a_paint_text_string() local
112 text_transformation_matrix); in _pl_a_paint_text_string()
125 norm = _matrix_norm (text_transformation_matrix); in _pl_a_paint_text_string()
137 text_transformation_matrix[i] /= norm; in _pl_a_paint_text_string()
147 text_transformation_matrix[i]); in _pl_a_paint_text_string()
H A Dp_text.c50 double text_transformation_matrix[6]; in _pl_p_paint_text_string() local
143 text_transformation_matrix); in _pl_p_paint_text_string()
157 norm = _matrix_norm (text_transformation_matrix); in _pl_p_paint_text_string()
181 text_transformation_matrix[i] /= norm; in _pl_p_paint_text_string()
249 text_transformation_matrix[i]); in _pl_p_paint_text_string()
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/entities/
H A Dtext.py366 return text_transformation_matrix(self)
394 def text_transformation_matrix(entity: Text) -> Matrix44: function