- Testbed repository: Containing several implementation patterns of C#/Rust interoperability
- Mandelbrot renderer: The simplest sample
- QOI image loader: Simple but practical sample
- STL mesh loader: A bit complex sample including unmanaged resource management
This file contains 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
#if HOGEHOGE | |
struct FullName | |
{ | |
[MarshalAs(UnmanagedType.LPStr)] public string first; | |
[MarshalAs(UnmanagedType.LPStr)] public string last; | |
} | |
[DllImport(_dll)] | |
static extern uint get_full_length(in FullName name); |
This file contains 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
using UnityEngine; | |
using UnityEditor; | |
static class RawToTexture3D | |
{ | |
static Color IntToColor(uint b1, uint b2) | |
=> new Color((b2 + (b1 << 8)) / 65536.0f, 0, 0); | |
[MenuItem("Tool/Raw to Texture3D")] | |
static void ConvertRawToTexture3D() |
This file contains 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
tar --use-compress-program=pigz -c -v -f foo.fcpbundle.tar.gz foo.fcpbundle |
The following is my plotter art workflow with Unity.
-
On Unity, render a monochrome line-art image using the Recolor (contour line) effect. The resolution of the image should be high enough. I usually use 2400x3840.
-
Rotate it if needed.
convert temp.png -rotate 90 render.png
-
Convert it into SVG using autotrace.
autotrace --centerline --output-format=svg render.png > plot.svg
KlakSpout is a Unity plugin that allows Unity to send/receive video streams using the Spout system.
This file contains 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
void UVEdge_float(float2 uv, float width, out float edge) | |
{ | |
uv = min(uv, 1 - uv); | |
float2 bd = saturate(1 - uv / (fwidth(uv) * width)); | |
edge = max(bd.x, bd.y); | |
} |