User contributions for PeterHarding
Jump to navigation
Jump to search
- 10:47, 27 January 2025 diff hist +47 N Go on macOS Created page with " = Modules = * https://github.com/therecipe/qt" current
- 10:46, 27 January 2025 diff hist +63 Resurrecting Impact →JOGL current
- 10:45, 27 January 2025 diff hist +34 Resurrecting Impact
- 21:03, 22 January 2025 diff hist +61 Resurrecting Impact
- 21:02, 22 January 2025 diff hist +163 Resurrecting Impact
- 21:00, 22 January 2025 diff hist +194 Resurrecting Impact
- 20:48, 22 January 2025 diff hist +562 Resurrecting Impact
- 20:42, 22 January 2025 diff hist +168 Resurrecting Impact
- 20:39, 22 January 2025 diff hist +1,409 Resurrecting Impact
- 20:25, 22 January 2025 diff hist +413 Resurrecting Impact
- 20:18, 22 January 2025 diff hist +115 Resurrecting Impact
- 20:17, 22 January 2025 diff hist +214 Resurrecting Impact
- 19:48, 22 January 2025 diff hist +77 Resurrecting Impact
- 19:47, 22 January 2025 diff hist +608 N Resurrecting Impact Created page with "= Impact Uplift Notes = I have been working with Damian McGuckin of PacificESI to see if it is feasible to resurrect the Impact finite element analysis package. This is implemented in Java but depends on a very old Java OpenGL library JOGL v1. JOGL was refactored a decade or so ago (into v2) to support new graphics technology such as GPU shaders. = Background = See: * https://impact.org * https://jogl.org == JOGL == A build occurred in August 2023 and I have be..."
- 14:50, 19 January 2025 diff hist −1 JOGL Notes →Question current
- 14:14, 19 January 2025 diff hist +1 JOGL Notes
- 14:13, 19 January 2025 diff hist +38 N Category:ChatGPT Created page with "ChatGPT links, notes and references..." current
- 14:13, 19 January 2025 diff hist +49 N Category:JOGL Created page with "Java OpenGL (JOGL) links, notes and references..." current
- 14:12, 19 January 2025 diff hist +37 N Category:OpenGL Created page with "OpenGL links, notes and references..." current
- 14:12, 19 January 2025 diff hist +11,252 N JOGL Notes Created page with "This page is the result of some conversations with ChatGPT = JOGL Basic = == Question == In jogl v2 what is the replacement for GL.glBegin() and .glEnd()? == ChatGPT == In JOGL v2, the GL.glBegin() and GL.glEnd() methods from OpenGL's fixed-function pipeline are deprecated and replaced by a more modern programmable pipeline approach. Instead of immediate mode (using glBegin/glEnd), you use vertex buffer objects (VBOs) or vertex array objects (VAOs) to specify ver..."
- 21:13, 30 November 2024 diff hist +291 SwiftUI Notes current
- 07:24, 25 November 2024 diff hist +136 Apple RoomPlan Demo App current
- 07:21, 25 November 2024 diff hist +48 N Category:Spatial Computing Created page with "Spatial Computing links, notes and references..." current
- 07:21, 25 November 2024 diff hist +31 Apple RoomPlan Demo App
- 07:20, 25 November 2024 diff hist +44 N Category:Lidar Created page with "LIDAR related links, notes and references..." current
- 07:20, 25 November 2024 diff hist +37 Apple RoomPlan Demo App
- 09:27, 24 November 2024 diff hist +492 N Apple RoomPlan Demo App Created page with "= The RoomPlan Example App = This demo app appeared first in the WWDC22 session - [https://developer.apple.com/wwdc22/10127 10127: Create parametric 3D scans with RoomPlan] It has seem some enhancement since then. WWDC23 session [https://developer.apple.com/wwdc22/10192 10192: Explore enhancements to RoomPlan] = Doco = * https://developer.apple.com/documentation/RoomPlan * https://developer.apple.com/documentation/roomplan/scanning-the-rooms-of-a-single-structure [..."
- 09:20, 24 November 2024 diff hist +41 N Category:Technology Created page with "Technology links, notes and references..." current
- 09:20, 24 November 2024 diff hist +46 N Category:VR Created page with "Virtual Reality links, notes and references..." current
- 09:20, 24 November 2024 diff hist +48 N Category:AR Created page with "Augmented Reality links, notes and references..." current
- 09:19, 24 November 2024 diff hist +40 N Category:VisionPro Created page with "VisionPro links, notes and references..." current
- 09:19, 24 November 2024 diff hist +286 N Apple Vision Pro Notes Created page with "= Links = * https://en.wikipedia.org/wiki/Apple_Vision_Pro = Apple Documentation = Sources of information provided by Apple * Xcode Documentation * Developer App on macOS * ChatGPT Category:Apple Category:VisionPro Category:AR Category:VR Category:Technology" current
- 12:46, 31 July 2024 diff hist +134 N OctoKit Created page with "=GitHub Support= * https://github.com/octokit * https://octokitpy.readthedocs.io/en/latest/ Category:GitHub Category:Python" current
- 10:00, 31 July 2024 diff hist +379 SwiftUI - Using Sliders current
- 09:59, 31 July 2024 diff hist +120 N Swift UI - Using Padding Created page with "=Padding= <pre> .padding() </pre> <pre> .padding(.horizontal, 50) </pre> Category:SwiftUI Category:Examples" current
- 09:24, 31 July 2024 diff hist +267 N SwiftUI - Using Sliders Created page with "=Using Sliders = See - https://developer.apple.com/documentation/swiftui/slider <pre> Slider(value: $bottomTrailing, in: 0...200, step: 5, minimumValueLabel: Text("0"), maximumValueLabel: Text("200")) {}.padding() </pre> Category:SwiftUI Category:Examples"
- 09:22, 31 July 2024 diff hist +1,052 N SwiftUI - Using Labels Created page with "=SwiftUI Labels= See - https://developer.apple.com/documentation/swiftui/label <pre> Label("Lightning", systemImage: "bolt.fill") </pre> <pre> Label("Lightning", systemImage: "bolt.fill") .labelStyle(.titleOnly) </pre> Label Styles - .titleOnly, .iconOnly and .titleAndIcon <pre> struct RedBorderedLabelStyle: LabelStyle { func makeBody(configuration: Configuration) -> some View { Label(configuration) .border(Color.red) } } </pre> <pre..." current
- 08:55, 31 July 2024 diff hist +126 SwiftUI - Useful References current
- 08:54, 31 July 2024 diff hist +201 SwiftUI - Useful References
- 08:51, 31 July 2024 diff hist +81 SwiftUI - Useful References
- 08:51, 31 July 2024 diff hist +90 SwiftUI - Useful References
- 08:50, 31 July 2024 diff hist +70 SwiftUI - Useful References
- 08:49, 31 July 2024 diff hist +77 SwiftUI - Useful References
- 08:48, 31 July 2024 diff hist 0 m SwiftUI - Useful References PeterHarding moved page SwiftUI - Useful Links to SwiftUI - Useful References without leaving a redirect
- 08:48, 31 July 2024 diff hist +7 SwiftUI - Useful References
- 08:48, 31 July 2024 diff hist +95 N SwiftUI - Useful References Created page with " * https://codingwithrashid.com/how-to-create-capsule-shape-in-swiftui/ Category:SwiftUI"
- 08:45, 31 July 2024 diff hist 0 m SwiftUI - Applying a Tap Gesture to an HStack PeterHarding moved page SwiftUI - Clickable HStack to SwiftUI - Applying a Tap Gesture to an HStack without leaving a redirect current
- 08:45, 31 July 2024 diff hist +373 N SwiftUI - Applying a Tap Gesture to an HStack Created page with "= Implementing a Tap Gesture on an HStack = <pre> struct ContentView: View { var body: some View { HStack { Image(systemName: "square.fill") Text("Tap me...") } .contentShape(Rectangle()) .onTapGesture { print("HStack tapped...") } } } </pre> Category:SwiftUI Category:Examples"
- 08:42, 31 July 2024 diff hist +404 N SwiftUI - Working with Images Created page with "=Some Examples= == Basics == <pre> Image(systemName: "globe.fill") .foregroundColor(.green) </pre> == Colour Multiplication == <pre> Image("lion") .colorMultiply(.yellow) </pre> == Applying Colour Filters == <pre> Image("lion") .hueRotation(.degrees(30)) .saturation(0.6) .contrast(2) </pre> == Next == <pre> </pre> <pre> </pre> Category:SwiftUI Category:Examples" current
- 08:38, 31 July 2024 diff hist +229 N SwiftUI - Generic parameter ‘Content’ could not be inferred Created page with " = Generic Parameter ‘Content’ Could Not Be Inferred = * https://forums.swift.org/t/why-generic-parameter-content-could-not-be-inferred-its-just-one-expression-very-simple/35923/1 Category:SwiftUI Category:Examples" current