You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportfunctiongetTextModel(font,caption,font_size){constmodel=newmakerjs.models.Text(font,caption,font_size);model.layer=DrawLayerNames.Caption;constmodel_extents=makerjs.measure.modelExtents(model);return[model,model_extents];}const[caption,caption_extents]=getTextModel(font,`H: ${H}`,render_options.font_size);caption.origin=[// some origin];makerjs.model.rotate(caption,/* some angle*/,caption.origin);
How can I find out how rotated the text is in another part of the program?