Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Last active July 4, 2020 16:16
Embed
What would you like to do?
using System;
using System.Windows.Media.Media3D;
namespace MyWpfConsoleApp
{
public static class Program
{
public static void Main()
{
var point = new Point3D(1, 2, 3);
Console.WriteLine($"Point X: {point.X}, Y: {point.Y}, Z: {point.Z}");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment