blob: cb2c4acd9ea2ff96aa1ad292041870b47a273540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#pragma once
#include "cad/construction.h"
#define SEARCH_DEPTH 16
enum component_type {
COM_POINT,
COM_LINE,
};
struct component {
enum component_type type;
struct element *e;
bool show_when_placed;
double min;
double max;
bool min_max_init;
bool drawn;
};
extern char *constraint_type_name[];
enum constraint_type {
CT_POINT_POINT_DISTANCE,
CT_POINT_LINE_DISTANCE,
CT_LINE_LINE_ANGLE,
};
struct path_step {
uint64_t i;
bool direction;
};
struct constraint {
enum constraint_type type;
double v;
struct component *c1;
struct component *c2;
uint64_t order;
struct path_step path[SEARCH_DEPTH];
bool forward;
bool used;
};
bool solve_constraints(struct constraint *constraints, size_t constraints_num, struct drawing *drawing);
|