Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - Русский

Change language to:
English - Français - 日本語 - Português -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Scilab help >> Графики > Datatips > datatipRedraw

datatipRedraw

Redraw all datatips after a 3D rotation to adjust their positions

Calling Sequence

datatipRedraw()
datatipRedraw(axes_handle)
datatipRedraw(curve_handles)

Arguments

axes_handle

The handle on an axes entity.

curve_handles

An array of handle on entities supporting the datatips

Description

Due to graphic system limitations it is not possible to adjust the datatip textbox positions during a rotation. Calling this function recomputes the positions for a clean rendering.

Examples

clf();
param3d()
p=gce();//get the handle on the polyline
datatipCreate(p,30);
datatipCreate(p,100);
datatipCreate(p,50);
ax=gca();
ax.rotation_angles=[35 45];// first plot below
sleep(2)
datatipRedraw() //second plot below

See Also

  • datatips — Tool for placing and editing tips along the plotted curves.
Report an issue
<< datatipMove Datatips datatipRemove >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:37:57 CEST 2013