| Char | Unicode | Unicode Name |
|---|---|---|
| = | 003D | = |
| - | 002D | - |
| + | 002B | + |
| ! | 0021 | ! |
| * | 002A | * |
| % | 0025 | % |
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 MarchingCubesParams_h | |
| #define MarchingCubesParams_h | |
| #include <simd/simd.h> | |
| struct MarchingCubesParams { | |
| simd_uint3 cells; | |
| simd_float3 origin; | |
| simd_float3 cellSize; | |
| float isoLevel; | |
| simd_float3 centerA; |
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
| #!/bin/bash | |
| function setup() { | |
| sudo mv /Library/LaunchDaemons/com.paloaltonetworks.gp.pangpsd.plist /Library/Application\ Support/PaloAltoNetworks/GlobalProtect/ | |
| sudo mv /Library/LaunchAgents/com.paloaltonetworks.gp.pangps.plist /Library/Application\ Support/PaloAltoNetworks/GlobalProtect/ | |
| sudo mv /Library/LaunchAgents/com.paloaltonetworks.gp.pangpa.plist /Library/Application\ Support/PaloAltoNetworks/GlobalProtect/ | |
| } | |
| function up() { |