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 //
//========================================================================//
// dsMathPlane.js, JavaScript API dsMathPlane interface
//
djObjectExtendCollection.dsMathPlane = djMathPlaneExtend;
function djMathPlaneExtend(dsObj) {
dsObj.release = function() { return djProcessCommand(this, 'release', arguments); };
dsObj.GetOrigin = function() {return djProcessCommand(this, 'GetOrigin', arguments); };
dsObj.GetNormal = function() {return djProcessCommand(this, 'GetNormal', arguments); };
dsObj.TransformBy = function(Transform) {return djProcessCommand(this, 'TransformBy', arguments); };
dsObj.IsCoplanarTo = function(Plane, Tolerance) {return djProcessCommand(this, 'IsCoplanarTo', arguments); };
dsObj.IsParallelTo = function(Plane, Tolerance) {return djProcessCommand(this, 'IsParallelTo', arguments); };
dsObj.IsPerpendicularTo = function(Plane, Tolerance) {return djProcessCommand(this, 'IsPerpendicularTo', arguments); };
dsObj.ReverseNormal = function() {return djProcessCommand(this, 'ReverseNormal', arguments); };
dsObj.IntersectWithLinearObject = function(LinearObject) {return djProcessCommand(this, 'IntersectWithLinearObject', arguments); };
dsObj.IntersectWithPlane = function(Plane) {return djProcessCommand(this, 'IntersectWithPlane', arguments); };
dsObj.SetOrigin = function(Point) {return djProcessCommand(this, 'SetOrigin', arguments); };
dsObj.SetNormal = function(Normal) {return djProcessCommand(this, 'SetNormal', arguments); };
dsObj.GetClosestPointTo = function(Point) {return djProcessCommand(this, 'GetClosestPointTo', arguments); };
//Add forward methods above this line
}