Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - Français

Change language to:
English - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Aide de Scilab >> Graphiques > handle > unglue

unglue

unglue a coumpound object and replace it by individual children.

Calling Sequence

unglue(h)
H=unglue(h)

Arguments

h

a handle on an Compound.

H

a vector of handle on the resulting entities after unCompound.

Description

Given a handle on an Compound entity, this function destroies the Compound and unpacks the elementary entities to associated them to its parent. glue returns a vector of handles on these individual children.

Examples

a=gca();
t=0:9;
x=cos(t*%pi/5);
y=sin(t*%pi/5);
plot(x,y,'r-');
p = unglue(gce())
set(p,"closed","on");

See Also

  • get — Retrieve a property value from a graphics entity or an User Interface object.
  • set — set a property value of a graphic entity object or of a User Interface object.
  • copy — copy a graphics entity.
  • glue — glue a set of graphics entities into an Compound.
  • graphics_entities — description of the graphics entities data structures
Report an issue
<< glue handle interaction >>

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:
Thu Oct 02 13:54:34 CEST 2014