Skip to content

Instantly share code, notes, and snippets.

@TheFo2sh
Last active May 17, 2020 15:40
Show Gist options
  • Save TheFo2sh/8c920d7583f176211a053bb10ec23b9f to your computer and use it in GitHub Desktop.
Save TheFo2sh/8c920d7583f176211a053bb10ec23b9f to your computer and use it in GitHub Desktop.
namespace Data
{
public class Point
{
public double x { get; set; }
public double y { get; set; }
}
public static class Drawings
{
public static Point[] TwitterImagePoints = new Point[]
{
new Point {x = 153.62863696554652, y = 301.589999781626},
new Point {x = 163.6116554193359, y = 301.29208323426343},
new Point {x = 173.56096511492393, y = 300.378966611013},
new Point {x = 183.44913842661794, y = 298.82094235529246},
new Point {x = 193.193880397981, y = 296.6035894834893},
new Point {x = 202.76181583407688, y = 293.7129500681089},
new Point {x = 212.1047569287445, y = 290.14459111001037},
new Point {x = 221.16312587182944, y = 285.90819542515874},
new Point {x = 229.8818349283135, y = 281.0241064957216},
new Point {x = 238.22207545332407, y = 275.5144973558813},
new Point {x = 246.14723063398617, y = 269.40790563695185},
new Point {x = 253.6030916821398, y = 262.7579424492084},
new Point {x = 260.58084257202455, y = 255.5879682061239},
new Point {x = 267.03451322866283, y = 247.96409568614183},
...
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment