Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
draftsight / opt / dassault-systemes / DraftSight / APISDK / djLibrary / dsCustomCoordinateSystemManager.js
Size: Mime:
//========================================================================//
//                        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                              //
//========================================================================//
// dsCustomCoordinateSystemManager.js, JavaScript API dsCustomCoordinateSystemManager interface
//

djObjectExtendCollection.dsCustomCoordinateSystemManager = djCustomCoordinateSystemManagerExtend;

function djCustomCoordinateSystemManagerExtend(dsObj) {
	dsObj.release =  function() { return djProcessCommand(this, 'release', arguments); };
	dsObj.GetWorldCustomCoordinateSystem = function() {return djProcessCommand(this, 'GetWorldCustomCoordinateSystem', arguments); };
	dsObj.GetPreviousCustomCoordinateSystem = function() {return djProcessCommand(this, 'GetPreviousCustomCoordinateSystem', arguments); };
	dsObj.GetNamedCustomCoordinateSystemList = function() {return djProcessCommand(this, 'GetNamedCustomCoordinateSystemList', arguments); };
	dsObj.GetNamedCustomCoordinateSystem = function(CSSName) {return djProcessCommand(this, 'GetNamedCustomCoordinateSystem', arguments); };
	dsObj.RemoveCustomCoordinateSystem = function(CustomCoordinateSystemName) {return djProcessCommand(this, 'RemoveCustomCoordinateSystem', arguments); };
	dsObj.GetActiveCustomCoordinateSystem = function() {return djProcessCommand(this, 'GetActiveCustomCoordinateSystem', arguments); };
	dsObj.GetDefaultCustomCoordinateSystem = function(DefaultCustomCoordinateSystem) {return djProcessCommand(this, 'GetDefaultCustomCoordinateSystem', arguments); };
	dsObj.AlignActiveCustomCoordinateSystemByEntity = function(Entity, PointOnEntityDblArray) {return djProcessCommand(this, 'AlignActiveCustomCoordinateSystemByEntity', arguments); };
	dsObj.AlignActiveCustomCoordinateSystemByView = function() {return djProcessCommand(this, 'AlignActiveCustomCoordinateSystemByView', arguments); };
	dsObj.SetActiveCustomCoordinateSystemOrigin = function(OriginX, OriginY, OriginZ) {return djProcessCommand(this, 'SetActiveCustomCoordinateSystemOrigin', arguments); };
	dsObj.AlignActiveCustomCoordinateSystemZAxis = function(OriginX, OriginY, OriginZ, DirectionX, DirectionY, DirectionZ) {return djProcessCommand(this, 'AlignActiveCustomCoordinateSystemZAxis', arguments); };
	dsObj.SaveActiveViewAs = function(Name) {return djProcessCommand(this, 'SaveActiveViewAs', arguments); };
	dsObj.AlignActiveCustomCoordinateSystemXYPlane = function(Origin, XAxisThroughPoint, XYPlaneThroughPoint) {return djProcessCommand(this, 'AlignActiveCustomCoordinateSystemXYPlane', arguments); };
	//Add forward methods above this line
}