Skip to content
Snippets Groups Projects
Select Git revision
  • eeefe8a9f79bf35ca279b5c7933441a71393865e
  • master default protected
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • alphashapes
  • bl
  • relaying
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • fix_overlaps
  • 3115-issue-fix
  • 3023-Fillet2D-Update
  • convert_fdivs
  • tmp_jcjc24
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • 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
41 results

CutGrid.cpp

Blame
  • drawContextFltkStringTexture.h 745 B
    // Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
    //
    // Contributed by Jonathan Lambrechts
    
    #ifndef DRAW_CONTEXT_FLTK_STRING_TEXTURE_H
    #define DRAW_CONTEXT_FLTK_STRING_TEXTURE_H
    
    #include "drawContextFltk.h"
    
    class drawContextFltkStringTexture : public drawContextFltk {
      class queueString;
      queueString *_queue;
      int _currentFontId;
      int _currentFontSize;
    
    public:
      drawContextFltkStringTexture();
      ~drawContextFltkStringTexture();
      void flushString();
      void drawString(const char *str);
      void setFont(int fontid, int fontsize);
      std::string getName() { return "StringTexture"; }
    };
    
    #endif