Kinetica   C#   API  Version 7.2.3.1
AggregateConvexHull.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica;
10 
17 {
24  public string table_name { get; set; }
25 
28  public string x_column_name { get; set; }
29 
32  public string y_column_name { get; set; }
33 
37  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
38 
42 
58  string x_column_name,
59  string y_column_name,
60  IDictionary<string, string> options = null)
61  {
62  this.table_name = table_name ?? "";
63  this.x_column_name = x_column_name ?? "";
64  this.y_column_name = y_column_name ?? "";
65  this.options = options ?? new Dictionary<string, string>();
66  } // end constructor
67 } // end class AggregateConvexHullRequest
68 
73 {
75  public IList<double> x_vector { get; set; } = new List<double>();
76 
78  public IList<double> y_vector { get; set; } = new List<double>();
79 
81  public int count { get; set; }
82 
83  public bool is_valid { get; set; }
84 
86  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
87 } // end class AggregateConvexHullResponse
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AggregateConvexHullRequest()
Constructs an AggregateConvexHullRequest object with default parameters.
A set of results returned by Kinetica.aggregateConvexHull.
IDictionary< string, string > info
Additional information.
int count
Count of the number of points in the convex set.
string x_column_name
Name of the column containing the x coordinates of the points for the operation being performed.
A set of parameters for Kinetica.aggregateConvexHull.
string y_column_name
Name of the column containing the y coordinates of the points for the operation being performed.
AggregateConvexHullRequest(string table_name, string x_column_name, string y_column_name, IDictionary< string, string > options=null)
Constructs an AggregateConvexHullRequest object with the specified parameters.
string table_name
Name of table on which the operation will be performed.
IList< double > y_vector
Array of y coordinates of the resulting convex set.
IList< double > x_vector
Array of x coordinates of the resulting convex set.