Skip to content
Snippets Groups Projects
Select Git revision
  • ab50d4c166bf8c9c626b34b9ad492e523e7ae02a
  • master default protected
  • alphashapes
  • quadMeshingTools
  • cygwin_conv_path
  • macos_arm64
  • add-transfiniteautomatic-to-geo
  • patch_releases_4_10
  • HierarchicalHDiv
  • isuruf-master-patch-63355
  • hyperbolic
  • hexdom
  • hxt_update
  • jf
  • 1618-pythonocc-and-gmsh-api-integration
  • octreeSizeField
  • hexbl
  • alignIrregularVertices
  • getEdges
  • patch_releases_4_8
  • isuruf-master-patch-51992
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
  • gmsh_4_8_4
  • gmsh_4_8_3
  • gmsh_4_8_2
  • gmsh_4_8_1
  • gmsh_4_8_0
  • gmsh_4_7_1
  • gmsh_4_7_0
41 results

androidGModel.h

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    DefaultOptions.h 95.86 KiB
    // Gmsh - Copyright (C) 1997-2017 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <gmsh@onelab.info>.
    
    #ifndef _DEFAULT_OPTIONS_H_
    #define _DEFAULT_OPTIONS_H_
    
    #include "GmshConfig.h"
    #include "GmshDefines.h"
    #include "Options.h"
    
    //          PLEASE RESPECT THE ALPHABETICAL ORDER WHEN
    //                    INSERTING A NEW OPTION!
    //
    // Option Database (General, Geometry, Mesh, Post, View, Print), with
    // default values. The first number defines the level of saving: O
    // for the option file, S for the session file and F for the full
    // listing:
    
    #define S GMSH_SESSIONRC
    #define O GMSH_OPTIONSRC
    #define F GMSH_FULLRC
    
    // STRINGS
    
    StringXString GeneralOptions_String[] = {
      { F|O, "AxesFormatX" , opt_general_axes_format0 , "%.3g" ,
        "Number format for X-axis (in standard C form)" },
      { F|O, "AxesFormatY" , opt_general_axes_format1 , "%.3g" ,
        "Number format for Y-axis (in standard C form)" },
      { F|O, "AxesFormatZ" , opt_general_axes_format2 , "%.3g" ,
        "Number format for Z-axis (in standard C form)" },
      { F|O, "AxesLabelX" , opt_general_axes_label0 , "" ,
        "X-axis label" },
      { F|O, "AxesLabelY" , opt_general_axes_label1 , "" ,
        "Y-axis label" },
      { F|O, "AxesLabelZ" , opt_general_axes_label2 , "" ,
        "Z-axis label" },
    
      { F|O, "BackgroundImageFileName" , opt_general_background_image_filename , "" ,
        "Background image file in JPEG, PNG or PDF format" },
    
      { F|O, "DefaultFileName" , opt_general_default_filename , "untitled.geo" ,
        "Default project file name" },
      { F,   "Display" , opt_general_display , "" ,
        "X server to use (only for Unix versions)" },
    
      { F|O, "ErrorFileName" , opt_general_error_filename ,
    #if defined(WIN32)
        "gmsh-errors" ,
    #else
        ".gmsh-errors" ,
    #endif
        "File into which the log is saved if a fatal error occurs" },
      { F|S, "ExecutableFileName", opt_general_executable_filename , "" ,
        "File name of the Gmsh executable (read-only)"},
    
      { F,   "FileName" , opt_general_filename , "" ,
        "Current project file name (read-only)" },
      { F|S, "FltkTheme" , opt_general_gui_theme , "" ,
        "FLTK user interface theme (try e.g. plastic or gtk+)" },
    
      { F|O, "GraphicsFont" , opt_general_graphics_font , "Helvetica" ,
        "Font used in the graphic window" },
      { F|O, "GraphicsFontEngine" , opt_general_graphics_font_engine , "Native" ,
        "Set graphics font engine (Native, Cairo)" },
      { F|O, "GraphicsFontTitle" , opt_general_graphics_font_title , "Helvetica" ,
        "Font used in the graphic window for titles" },