INGOR
Loading...
Searching...
No Matches
ytLayout.h
1/*
2 net/Layout.{h,c} : Layout algorthm interface
3 Copyright (C) 2019, Yoshinori Tamada <tamada A T ytlab.jp>
4 All rights reserved.
5
6 See LICENSE.txt for details of the licensing agreement.
7*/
8#ifndef __YTLIB_LAYOUT_H
9#define __YTLIB_LAYOUT_H
10
11typedef struct {
12 double x;
13 double y;
15
16#include "ytNetwork.h"
17
18typedef int (*ytLayout_Method)(ytNetwork * network, ytKeyValues * args, ytLayout_Pos * pos);
19
20
21
22#endif /* __YTLIB_LAYOUT_H */
key-value pairs.
Network abstraction.
Definition ytLayout.h:11