Skip to content

Instantly share code, notes, and snippets.

View rboyce's full-sized avatar

Robert Boyce rboyce

View GitHub Profile
import gifAnimation.*;
PImage img;
GifMaker gifExport;
String imgFileName = "garden-500";
String fileType = "jpg";
int brightnessDelta = 10;
int frameDelay = 0;
int previousBrightness = 0;
import SwiftUI
struct CustomVStack<Content: View>: View {
let content: () -> Content
init(@ViewBuilder content: @escaping () -> Content) {
self.content = content
}
var body: some View {
VStack(spacing: 0) {