Move pi to math "subpackage"

master
rexim 2018-04-29 20:15:13 +07:00
parent 9cd79b7d5d
commit e416ddeb0a
6 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@
#include "./lt.h"
#include "./goals.h"
#include "./error.h"
#include "./pi.h"
#include "./math/pi.h"
#include "./triangle.h"
#define GOAL_RADIUS 10.0f

View File

@ -8,7 +8,7 @@
#include "./wavy_rect.h"
#include "./lt.h"
#include "./error.h"
#include "./pi.h"
#include "./math/pi.h"
#define WAVE_PILLAR_WIDTH 10.0f

View File

@ -8,7 +8,7 @@
#include "./sound_medium.h"
#include "./lt.h"
#include "./error.h"
#include "./pi.h"
#include "./math/pi.h"
struct sound_medium_t
{

View File

@ -1,7 +1,7 @@
#ifndef POINT_H_
#define POINT_H_
#include "./pi.h"
#include "./math/pi.h"
#include "./math/mat3x3.h"
typedef struct point_t {

View File

@ -1,7 +1,7 @@
#include <stdio.h>
#include <math.h>
#include "./pi.h"
#include "./math/pi.h"
#include "./triangle.h"
#include "./math/rand.h"