Repository URL to install this package:
|
Version:
2016.3.0.4050 ▾
|
//========================================================================//
// SOURCE CODE LICENSE //
// Copyright 2014 Dassault Systèmes SolidWorks Corporation //
// All rights reserved. //
// This software and related documentation are proprietary to //
// Dassault Systèmes SolidWorks Corporation //
//========================================================================//
// dsMathLine.js, JavaScript API dsMathLine interface
//
djObjectExtendCollection.dsMathLine = djMathLineExtend;
function djMathLineExtend(dsObj) {
dsObj.release = function() { return djProcessCommand(this, 'release', arguments); };
dsObj.get_StartPoint = function() {return djProcessCommand(this, 'get_StartPoint', arguments); };
dsObj.put_StartPoint = function(NewVal) {return djProcessCommand(this, 'put_StartPoint', arguments); };
dsObj.get_EndPoint = function() {return djProcessCommand(this, 'get_EndPoint', arguments); };
dsObj.put_EndPoint = function(NewVal) {return djProcessCommand(this, 'put_EndPoint', arguments); };
dsObj.GetType = function() {return djProcessCommand(this, 'GetType', arguments); };
dsObj.GetDirection = function() {return djProcessCommand(this, 'GetDirection', arguments); };
dsObj.GetLength = function() {return djProcessCommand(this, 'GetLength', arguments); };
dsObj.IsParallelToLine = function(Line, Tolerance) {return djProcessCommand(this, 'IsParallelToLine', arguments); };
dsObj.IsPerpendicularToLine = function(Line, Tolerance) {return djProcessCommand(this, 'IsPerpendicularToLine', arguments); };
dsObj.TransformBy = function(Transform) {return djProcessCommand(this, 'TransformBy', arguments); };
dsObj.IntersectWithLinearObject = function(LinearObject) {return djProcessCommand(this, 'IntersectWithLinearObject', arguments); };
dsObj.IntersectWithPlane = function(Plane) {return djProcessCommand(this, 'IntersectWithPlane', arguments); };
dsObj.GetClosestPointTo = function(Point) {return djProcessCommand(this, 'GetClosestPointTo', arguments); };
dsObj.GetClosestPointToLinearObject = function(LinearObject) {return djProcessCommand(this, 'GetClosestPointToLinearObject', arguments); };
dsObj.GetClosestPointToCircArc = function(CircArcObject) {return djProcessCommand(this, 'GetClosestPointToCircArc', arguments); };
dsObj.GetClosestPointToEllipArc = function(EllipArcObject) {return djProcessCommand(this, 'GetClosestPointToEllipArc', arguments); };
//Add forward methods above this line
}