Main Content

deleteConnection

Delete a connection between views in view set

Since R2020a

Description

example

vSet = deleteConnection(vSet,viewId1,viewId2) deletes the connection between views viewId1 and viewId2 in the view set, vSet.

Examples

collapse all

Create an empty point cloud view set.

vSet = pcviewset;

Add two views and one connection to the view set.

vSet = addView(vSet,1);
vSet = addView(vSet,2);
vSet = addConnection(vSet,1,2);

Delete the connection between the two views.

vSet = deleteConnection(vSet,1,2);

Input Arguments

collapse all

Point cloud view set, specified as a pcviewset object.

View identifier 1, specified as an integer. View identifiers are unique to a specific view.

View identifier 2, specified as an integer. View identifiers are unique to a specific view.

Output Arguments

collapse all

View set with deleted connections between views, returned as a pcviewset object.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Version History

Introduced in R2020a

See Also

Objects