Skip to content
Snippets Groups Projects
Select Git revision
  • aaafa013c19ae42f8fb4f51e3d6bb57ff0552da2
  • main default protected
  • oleg-alexandrov-patch-1
  • radtan
  • 2.0
  • Kelvinrr-patch-1
  • acpaquette-patch-1
  • gxp_testing
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • 1.7.0
  • 1.6.0
  • 1.5.2
  • 1.5.1
  • 1.5.0
  • 1.4.1
  • 1.4.0
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.1
  • 1.1.0
  • 1.0.0
24 results

UsgsAstroFrameSensorModel.cpp

Blame
    • Kristin's avatar
      aaafa013
      Pulled losToEcf shared functions out into Utilities class (#174) · aaafa013
      Kristin authored
      * Initial steps to pull common camera model or math utility functions into a separate Utilities file.
      
      * dos2unix line endings again
      
      * ../include/usgscsm/UsgsAstroLsSensorModel.h
      
      * updates to modularized functions
      
      * dos2unix UsgsAstroFrameSensorModel
      
      * Forgot to actually add the Utilities class
      
      * Keep needed to unix2dos to re-fix line ending caracters
      
      * We have some dos line ending and some unix line endings in our code
      aaafa013
      History
      Pulled losToEcf shared functions out into Utilities class (#174)
      Kristin authored
      * Initial steps to pull common camera model or math utility functions into a separate Utilities file.
      
      * dos2unix line endings again
      
      * ../include/usgscsm/UsgsAstroLsSensorModel.h
      
      * updates to modularized functions
      
      * dos2unix UsgsAstroFrameSensorModel
      
      * Forgot to actually add the Utilities class
      
      * Keep needed to unix2dos to re-fix line ending caracters
      
      * We have some dos line ending and some unix line endings in our code
    jquery-3.2.1.js 261.76 KiB
    /*!
     * jQuery JavaScript Library v3.2.1
     * https://jquery.com/
     *
     * Includes Sizzle.js
     * https://sizzlejs.com/
     *
     * Copyright JS Foundation and other contributors
     * Released under the MIT license
     * https://jquery.org/license
     *
     * Date: 2017-03-20T18:59Z
     */
    ( function( global, factory ) {
    
    	"use strict";
    
    	if ( typeof module === "object" && typeof module.exports === "object" ) {
    
    		// For CommonJS and CommonJS-like environments where a proper `window`
    		// is present, execute the factory and get jQuery.
    		// For environments that do not have a `window` with a `document`
    		// (such as Node.js), expose a factory as module.exports.
    		// This accentuates the need for the creation of a real `window`.
    		// e.g. var jQuery = require("jquery")(window);
    		// See ticket #14549 for more info.
    		module.exports = global.document ?
    			factory( global, true ) :
    			function( w ) {
    				if ( !w.document ) {
    					throw new Error( "jQuery requires a window with a document" );
    				}
    				return factory( w );
    			};
    	} else {
    		factory( global );
    	}
    
    // Pass this if window is not defined yet
    } )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
    
    // Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
    // throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
    // arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
    // enough that all such attempts are guarded in a try block.
    "use strict";
    
    var arr = [];
    
    var document = window.document;
    
    var getProto = Object.getPrototypeOf;
    
    var slice = arr.slice;
    
    var concat = arr.concat;
    
    var push = arr.push;
    
    var indexOf = arr.indexOf;
    
    var class2type = {};
    
    var toString = class2type.toString;
    
    var hasOwn = class2type.hasOwnProperty;
    
    var fnToString = hasOwn.toString;
    
    var ObjectFunctionString = fnToString.call( Object );