network_embed_in_plane
- compas.datastructures.network_embed_in_plane(network, fixed=None, straightline=True)[source]
Embed the network in the plane.
- Parameters
network (
compas.datastructures.Network
) – A network object.fixed ([hashable, hashable], optional) – Two fixed points.
straightline (bool, optional) – If True, embed using straight lines only.
- Returns
bool – True if the embedding was successful. False otherwise.
- Raises
ImportError – If NetworkX is not installed.