我在下面为此编写重载构造函数时遇到了麻烦。这是我被要求做的。为将三个点作为输入的平面类创建一个重载的构造函数。将这些输入命名为 pointU、pointV 和 pointW。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Geometry
{
public class Plane
{
//---------------------------------------------------------------------
// PRIVATE INSTANCE VARIABLES
private Point u;
private Point v;
private Point w;
//---------------------------------------------------------------------
// CONSTRUCTORS
public Plane()
{
u = new Point();
v = new Point();
w = new Point();
}
//Overloaded Constructor with 3 Points as inputs