embed_graph.h 759 B

12345678910111213141516171819202122232425
  1. /*************************************************************************
  2. * Copyright (c) 2011 AT&T Intellectual Property
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors: Details at https://graphviz.org
  9. *************************************************************************/
  10. #pragma once
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #include <neatogen/defs.h>
  15. extern void embed_graph(vtx_data * graph, int n, int dim, DistType ***,
  16. int);
  17. extern void center_coordinate(DistType **, int, int);
  18. #ifdef __cplusplus
  19. }
  20. #endif