Skip to content

Releases: rryam/MeshingKit

1.2.1

12 Nov 20:07
Compare
Choose a tag to compare

New in this Release

Added more templates to 2x2 grid

1.2.0

19 Oct 11:44
Compare
Choose a tag to compare

New in this release

Add animation directly with a view:

MeshingKit.animatedGradientSize4(template: .auroraBorealis, showAnimation: .constant(true))

1.1.0

15 Oct 17:42
Compare
Choose a tag to compare

New in this release

Added parameterized noise shader and SwiftUI view:

ParameterizedNoiseView(intensity: .constant(0.5), frequency: .constant(0.2), opacity: .constant(0.9)) {
  MeshingKit.gradientSize3(template: .cosmicAurora)
}

1.0.0

14 Oct 06:38
a452d20
Compare
Choose a tag to compare

MeshingKit v1.0.0

Release Date: October 14, 2024

Gradient Templates with Multiple Sizes

  • 2x2 Templates:
    Examples: Mystic Twilight, Arctic Frost, Tropical Paradise, Cherry Blossom
  • 3x3 Templates:
    Examples: Intelligence, Ocean Depths, Aurora Borealis, Ruby Fusion
  • 4x4 Templates:
    Examples: Cosmic Nebula, Jungle Mist, Volcanic Oasis, Arctic Frost

Platform Support

MeshingKit is compatible with the latest versions of:

  • iOS 18
  • macOS 15
  • macCatalyst 18
  • tvOS 18
  • visionOS 2
  • watchOS 11

How to Use MeshingKit

import SwiftUI
import MeshingKit

struct ContentView: View {
    var body: some View {
        MeshingKit.gradientSize3(template: .cosmicAurora)
            .frame(width: 300, height: 300)
    }
}