Skip to content
Snippets Groups Projects
Select Git revision
  • 16fb6e597e8c3e2ce87d85381b12a3526b995763
  • master default
  • fix_correction
  • covid
  • multiple_files
  • fourier_coeff
  • headers
  • revampProbStat
  • v1.0.5
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
  • untagged-5f91b9934a0d64190e08
  • untagged-185a5c9790d5fd86d5a7
  • untagged-d08ea895726d1693fe75
  • untagged-0a69f730a9edf8f452c2
  • untagged-da21599a55453b349309
  • untagged-c23b343a32e6ba6b41ef
  • untagged-f970fb8b2d5aa387c7e1
  • untagged-82bd404cbb7da09ef714
  • untagged-9d1a8d01c160be73c2d7
  • untagged-a7d0fd1e09f98f58b2e7
  • untagged-67162b0c997bec772454
  • untagged-e4eb7c83718bffcd6dc3
  • untagged-942bdedb39bd9d9a9db2
  • untagged-2023d0fb6c34f29165ee
28 results

covid.py

Blame
  • Forked from orestis.malaspin / math_tech_info
    Source project has a limited visibility.
    PlanetarySystem.h 531 B
    #ifndef PLANETARY_SYSTEM_H
    #define PLANETARY_SYSTEM_H
    
    #include <stdint.h>
    
    #include "CelestialObject.h"
    #include "gfx/gfx.h"
    
    const uint32_t SCREEN_WIDTH;
    const uint32_t SCREEN_HEIGHT;
    
    typedef struct {
        uint32_t objects_length;
        CelestialObject **objects;
        double interval;
    } PlanetarySystem;
    
    PlanetarySystem *planetary_system_create(double interval);
    void planetary_system_update(PlanetarySystem *planetary_system);
    void planetary_system_draw(PlanetarySystem *planetary_system, struct gfx_context_t *context);
    
    #endif