aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/util.h
blob: 798b73b5093e7221874d2b220959128e79cf61f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <complex.h>
#include <stddef.h>

typedef struct {
    size_t x;
    size_t y;
} vec2;

double complex lattice_to_complex(const size_t index, const vec2 resolution);