/VertexKit

a Framework for iOS & macOS

Primary LanguageSwiftMIT LicenseMIT

VertexKit

License Cocoapods Platform

a Framework for iOS & macOS
written in Swift & Metal
an extension of PixelKit

Install

pod 'VertexKit'
import VertexKit

To get access to the dependencies:

import LiveValues
import RenderKit
import PixelKit

Tutorials

Particles Noise Plane Noise Flow Field Flow

Particles Example

view.wantsLayer = true
view.layer!.backgroundColor = .black

PixelKit.main.render.bits = ._16

let pres: Resolution = .square(Int(sqrt(1_000_000)))

let noise = NoisePIX(at: pres)
noise.colored = true
noise.octaves = 5
noise.zPosition = .live * 0.1

let particles = ParticlesUV3DPIX(at: .cgSize(view.bounds.size) * 2)
particles.vtxPixIn = noise - 0.5
particles.color = LiveColor(lum: 1.0, a: 0.1)

let finalPix: PIX = particles
finalPix.view.frame = view.bounds
finalPix.view.checker = false
view.addSubview(finalPix.view)