This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ContentView.swift | |
// BookCover | |
// | |
// Created by Jordi Bruin on 01/07/2022. | |
// | |
import SwiftUI | |
struct ContentView: View { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef MarchingCubesColorBlobParams_h | |
#define MarchingCubesColorBlobParams_h | |
#include <simd/simd.h> | |
typedef struct { | |
simd_float3 center; | |
float radius; | |
simd_float3 color; | |
float _pad; | |