Skip to content

Instantly share code, notes, and snippets.

View rickyburrell's full-sized avatar

Ricky Burrell rickyburrell

  • Property24
  • Cape Town, South Africa
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="theme-color" content="#111111">
<title>Fullscreen Test</title>
<style>
html, body { margin:0; padding:0; height:100%; background:#111; color:#fff; }
@rickyburrell
rickyburrell / PolyClipper.cs
Last active July 18, 2020 09:35
C# clip a polygon ring with a rectangle
using System;
using System.Collections.Generic;
using System.Linq;
namespace PolyClipper
{
public static class PolyClipper
{